https://github.com/tareque20/fake-rest-api-using-json-server
Simple rest api test using json server
https://github.com/tareque20/fake-rest-api-using-json-server
json-server postman restful-api
Last synced: 3 months ago
JSON representation
Simple rest api test using json server
- Host: GitHub
- URL: https://github.com/tareque20/fake-rest-api-using-json-server
- Owner: tareque20
- License: mit
- Created: 2018-10-12T12:43:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-12T13:03:31.000Z (over 7 years ago)
- Last Synced: 2025-01-23T13:43:56.842Z (about 1 year ago)
- Topics: json-server, postman, restful-api
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Install json server
```sh
npm install -g json-server
```
# Run json server
```sh
json-server --watch db.json
```
# Browser URL
```sh
http://localhost:3000/users
```
### Postman collection file has been added. After starting the json server, anyone can test using post.
[https://github.com/tareque20/fake-rest-api-using-json-server/tree/master/postman]