Answers for "db.json"

12

db.json

json-server --watch db.json
Posted by: Guest on March-04-2020
5

json server

npm install -g json-server
Posted by: Guest on March-04-2020
4

json server

{
  "posts": [
    { "id": 1, "title": "json-server", "author": "typicode" }
  ],
  "comments": [
    { "id": 1, "body": "some comment", "postId": 1 }
  ],
  "profile": { "name": "typicode" }
}
Posted by: Guest on March-04-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language