본문 바로가기
부트캠프 개발일지 2023-2024/React 리액트

[9주차] 리액트심화: json server + 스탠다드 내용 업데이트

by whereanna00 2023. 11. 28.

json server

아주 간단한 DB와 API 서버를 생성해주는 패키지

 

 

패키지 설치

yarn add json-server

 

 

json-server start, yarn start 두 가지를 모두 별개로 실행해야 한다.

 

 

json-server 실행 명령어

yarn json-server --watch db.json --port 3001

 

명령어 입력 후, db.json이 자동으로 생성된다. 

{
  "posts": [
    {
      "id": 1,
      "title": "json-server",
      "author": "typicode"
    }
  ],
  "comments": [
    {
      "id": 1,
      "body": "some comment",
      "postId": 1
    }
  ],
  "profile": {
    "name": "typicode"
  }
}

 

 

 

이렇게 만들어진 db 확인하기

- localhost:3001/todos

 


json-server는 backend이다.

db는 db.json 파일. 특수하게 json-server는 db를 내장하고 있는 케이스이다.

728x90
반응형