登录 注册
当前位置:主页 > 资源下载 > 16 > 创建RESTAPI工具JSONServer.zip下载

创建RESTAPI工具JSONServer.zip下载

  • 更新:2024-12-06 14:36:02
  • 大小:158KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

JSON Server 用来创建 RestApi,使用非常的方便。安装安装之前,需要已经安装好NodeJs.$ sudo npm install -g json-server基本使用新建一个db.json文件写入一段json,如:{  "posts": [  { "id": 1, "title": "json-server", "author": "typicode" }  ],  "comments": [  { "id": 1, "body": "some comment", "postId": 1 }  ],  "profile": { "name": "typicode" } }启动serverjson-server --watch db.json 标签:JSONServer