欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

JSON Server--本地开发接口服务器

程序员文章站 2022-03-03 10:33:05
...

1、安装JSON Server

sudo npm install -g json-server

2、创建json文件 如:db.json 

{

  "posts": [

    { "id": 1, "title": "json-server", "author": "typicode" }

  ],

  "comments": [

    { "id": 1, "body": "some comment", "postId": 1 }

  ],

  "profile": { "name": "typicode" }

}

3、启动 JSON Server

npx json-server db.json

访问 http://localhost:3000/posts/1, 可以得到

{ "id": 1, "title": "json-server", "author": "typicode" }

相关标签: 工具 开发工具