json-server用于模擬服務(wù)端接口數(shù)據(jù)寸潦,可以根據(jù)json數(shù)據(jù)建立一個完整的web服務(wù)闹蒜。
一、安裝json-server
github上的json-server地址
安裝json-server
npm install -g json-server
查看版本號,安裝成功
json-server -v
0.17.0
二、創(chuàng)建db.json
在文件夾下創(chuàng)建一個db.json文件缸废,存放一些數(shù)據(jù)。
{
"posts": [
{ "id": 1, "title": "json-server", "author": "typicode" }
],
"comments": [
{ "id": 1, "body": "some comment", "postId": 1 }
],
"profile": { "name": "typicode" }
}
三驶社、啟動json-server
在文件夾下企量,直接在地址欄cmd,進(jìn)入終端亡电。執(zhí)行啟動json-server命令届巩。
json-server --watch .\db.json --port 5222
json-server 已經(jīng)啟動成功。
四份乒、查看數(shù)據(jù)
在瀏覽器中輸入地址:http://localhost:+端口號/接口名稱恕汇,即可查看數(shù)據(jù)腕唧。
例如:輸入http://localhost:5000/comments
四、public目錄
在和db.json同級的目錄下瘾英,創(chuàng)建public目錄枣接,里面可以存放一些靜態(tài)資源。