“JSON Server” Ответ

JSON Server

json-server --watch db.json
Disgusted Dragonfly

JSON Server

npm install -g json-server
Disgusted Dragonfly

JSON Server

npm i --save-dev json-server

<add db.json file>
npx json-server --watch db.json

# to change port 
npx json-server --watch db.json --port 8000
shahul

JSON Server

npm install -g json-server
Inquisitive Ibis

JSON Server

{
  "posts": [
    { "id": 1, "title": "json-server", "author": "typicode" }
  ],
  "comments": [
    { "id": 1, "body": "some comment", "postId": 1 }
  ],
  "profile": { "name": "typicode" }
}
Disgusted Dragonfly

JSON Server

const myObj = {name: "John", age: 31, city: "New York"};
const myJSON = JSON.stringify(myObj);
window.location = "demo_json.php?x=" + myJSON;
naly moslih

Ответы похожие на “JSON Server”

Вопросы похожие на “JSON Server”

Больше похожих ответов на “JSON Server” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования