npm install -g json-server
json-server --watch ./src/db/data.json --port 3001
{
"days": [
{ "id": 1, "day": 1 },
{ "id": 2, "day": 2 },
{ "id": 3, "day": 3 }
],
"words": [
{"id": 1,
"day": 1,
"eng": "book"},
{ "id": 3,
"day": 2,
"eng": "car",}
]
}
http://localhost:3001/words?day=1
json.data의 키 words 안의 객체 중 키 day가 1인 모든 객체를 보여줌.
json.data의 키 words 안의 객체 중 id가 1인 모든 객체를 보여줌.