IT인터넷/React반응

테스트용json-server간단하게 만들기

아이티제어 2023. 9. 24. 16:15

1. 사전설치 : nodejs

2. json-serve설치

npm install -g json-server

3. db.json 이란 파일을 생성하고 아래 추가.

{
  "posts": [
    { "id": 1, "title": "Hello World" }
  ],
  "comments": [
    { "id": 1, "body": "some comment", "postId": 1 }
  ]
}

4. json-server 실행

json-server --watch db.json

json개발이되기전 로칼에서  json을 임의로 만들어 테스트에 유용하다.

'IT인터넷 > React반응' 카테고리의 다른 글

React설치  (0) 2023.09.24
React시작하자  (0) 2023.03.06
React시작하자  (0) 2023.03.03