- node_version: v8.1.2
- yarn v1.3.2
$ cd /path/to/this/
$ yarn
- api blue print の形式で書いてください。
- 書き終わったら以下のコマンドを実行し、 index.html を生成してください。
$ yarn run build
$ open index.html
mock server を立ち上げることで、 api サーバーが完成する前に、json のやりとりができます。
$ yarn run dev_server
localhost:3002 番にサーバーが立ち上がるように設定しています。
POST: /items
curl -H "Content-Type: application/json" -X POST -d '{"title":"カバン"}' http://localhost:3002/items/
GET: /items
curl -H "Content-Type: application/json" -X GET http://localhost:3002/items
PUT: /items/1
curl -H "Content-Type: application/json" -X PUT -d '{"title": "綺麗なカバン"}' http://localhost:3002/items/1