How to install Json Server for API Testing

preview_player
Показать описание
How to install Json server for API Testing

2. npm install –g json–server
3. json-server --watch (complete path where you have place .json data file on your system)
Рекомендации по теме
Комментарии
Автор

Finally!! I spent much time to solve my problem. Thank you so much

berkgoksuylonce
Автор

thank you very much i was searching for a hour to solve this problem

muhammedhesham
Автор

I want to test my Form ( like Name, Mobile), , what is the process bro ?

SonuSinghmirzapur
Автор

While installing json server I am getting a message “ 15 packages are looking for funding” how should I proceed ? Could you please help

ariana_
Автор

what is the editor or tool you are using to POST/ UPDATE???

Madsnare
Автор

How can we run json server & localhost:3000 simultaneously

AshutoshSingh-qfhx
Автор

{
"students": [
{
"id": 1,
"name": "John Doe",
"age": 18,
"grade": "12th",
"subjects": ["Math", "Physics", "English"],
"address": {
"street": "123 Main St",
"city": "New York",
"state": "NY",
"zipcode": "10001"
}
},
{
"id": 2,
"name": "Jane Smith",
"age": 17,
"grade": "11th",
"subjects": ["Biology", "Chemistry", "History"],
"address": {
"street": "456 Elm St",
"city": "Los Angeles",
"state": "CA",
"zipcode": "90001"
}
},
{
"id": 3,
"name": "David Johnson",
"age": 16,
"grade": "10th",
"subjects": ["Computer Science", "Spanish", "Art"],
"address": {
"street": "789 Oak St",
"city": "Chicago",
"state": "IL",
"zipcode": "60601"
}
}
]
}

PratapKumar-bstj