mirror of
https://gitee.com/many2many/java-web.git
synced 2025-01-12 07:00:55 +08:00
31 lines
839 B
Markdown
31 lines
839 B
Markdown
|
||
# 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) |