java-web/examples/chapter03/tasks/json-server.md

31 lines
839 B
Markdown
Raw Normal View History

2024-10-11 11:58:39 +08:00
# json-server
## 介绍
[github地址](https://github.com/typicode/json-server)
json-server 是一款小巧的接口模拟工具,一分钟内就能搭建一套 Restful 风格的 API尤其适合前端接口测试使用。
只需指定一个 json 文件作为 api 的数据源即可使用起来非常方便30 秒入门,基本上有手就行。
进阶操作还支持分页,排序等操作,简直强大。
## 安装
- 安装 Node.js
- clone项目
> git clone https://github.com/typicode/json-server.git
- 进入项目目录,安装依赖
> npm install
- 把自己的db.json文件放在fixtures目录下然后运行json-server即可
> npm run dev -- --port 8899
- 访问 http://localhost:8899/users
## 使用
[前端接口神器之 json-server 详细使用指南](https://www.cnblogs.com/Megasu/p/15782353.html)