0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

JSON Serverをインストールする

0
Posted at

JSON Severは、簡単にREST APIのサーバーを作れるツールです。
REST APIのデータをJSONファイルで用意するだけで作れます。

JSON Serverをインストールする

以下のコマンドを実行してください。

npm install json-server

JSONファイルを用意する

JSON Severを起動するフォルダに、「db.json」を作ります。

{
  "users": [
    {"id": 1, "name": "taro"},
    {"id": 2, "name": "jiro"}
  ]
}

JSON Serverを起動する

以下のコマンドを実行してください。

npx json-server --watch db.json --port 3001

 

以上です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?