Json-server
프론트 엔드로 임시 서버를 열어 서버 협업을 하기 위해 json-server를 추가하여 작업 하는 일이 있습니다.
명령어는 json-server --watch db.json --port 3001 으로 하여 localhost:3001로 실행할 수 있습니다.
프로젝트 안에 db.json를 만든 후
{
"books": [
{
"id": "1",
"sort": 1,
"title": "제목1",
"img": "title1.svg"
},
{
"id": "2",
"sort": 2,
"title": "제목2",
"img": "title2.svg"
},
{
"id": "3",
"sort": 3,
"title": "제목3",
"img": "title3.svg"
},
{
"id": "4",
"sort": 4,
"title": "제목4",
"img": "title4.svg"
},
{
"id": "5",
"sort": 5,
"title": "제목5",
"img": "title5.svg"
}
]
}
안에 임의의 서버 내용을 입력 후
package.json 안에 scripts 안에
"scripts": {
"start": "env-cmd -f .env craco start",
"build": "CI= env-cmd -f .env.production react-scripts build",
"test": "craco test",
"eject": "craco eject",
"server": "json-server --watch db.json --port 3001",
},
이런식으로 json-server를 추가 하면 npm run server
으로 서버를 실행할 수 있습니다.
Author And Source
이 문제에 관하여(Json-server), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@tnsdlf158/Json-server저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)