local json server code example
Example 1: json server
json-server --watch db.json
Example 2: json server
npm install -g json-server
Example 3: json server
{
"posts": [
{ "id": 1, "title": "json-server", "author": "typicode" }
],
"comments": [
{ "id": 1, "body": "some comment", "postId": 1 }
],
"profile": { "name": "typicode" }
}
Example 4: json-server localhost
json-server --host 192.168.1.XXX my_file.json