단순 코드 기록/React

React_JSON 서버 설치

일일일코_장민기 2024. 3. 20. 14:44
728x90

npm install json-server --save
src 밖에 json파일 생성

{
    "posts": [
      {
        "id": 1,
        "title": "json-server",
        "author": "typicode"
      }
    ],
    "comments": [
      {
        "id": 1,
        "body": "some comment",
        "postId": 1
      }
    ],
    "profile": {
      "name": "typicode"
    },
    "todos": [
      {
        "id": 1,
        "title": "Read SitePoint article",
        "complete": false
      },
      {
        "id": 2,
        "title": "Clean inbox",
        "complete": false
      },
      {
        "id": 3,
        "title": "Make restaurant reservation",
        "complete": false
      }
    ]
  }

 

"json-server": "json-server --port 3001 --watch db.json"

 

npm run json-server 입력

'단순 코드 기록 > React' 카테고리의 다른 글

React_라우터_링크와 에러페이지  (0) 2024.03.20
React_router  (0) 2024.03.20
React_axios  (0) 2024.03.20
React_외부데이터 + 데이터 추가  (0) 2024.03.20
React_외부데이터+modal  (0) 2024.03.20