# json-server

NPM

$ npm i -g json-server

$ json-server --watch db.json

Resources
http://localhost:3000/posts
http://localhost:3000/comments
http://localhost:3000/profile

Home http://localhost:3000

Paginate

GET /posts?_page=7
GET /posts?_page=7&_limit=20

data/db.json

{
  "jobs": [
      {"title":"ninja ux designer", "id":1, "details":"testing"}
    ]
}