json server

JavaScript
#Install JSON Server
npm install -g json-server

#Start JSON Server
json-server --watch db.json
json-server --watch db.jsonnpm install -g json-server
{
  "posts": [
    { "id": 1, "title": "json-server", "author": "typicode" }
  ],
  "comments": [
    { "id": 1, "body": "some comment", "postId": 1 }
  ],
  "profile": { "name": "typicode" }
}
Source

Also in JavaScript: