npm install -g json-server
{
"posts": [
{ "id": 1, "title": "json-server", "author": "typicode" }
],
"comments": [
{ "id": 1, "body": "some comment", "postId": 1 }
],
"profile": { "name": "typicode" }
}
json-server --watch db.json
Si vas al endpoint http://localhost:3000/posts/1 deberia de salirte
{ "id": 1, "title": "json-server", "author": "typicode" }