This repo contains crud with mongoose and simple express JS.
- Run command
npm ito install dependencies - Run node
index.jsto run the project - a message will come likeServer running on port 8080 - Use the API's
http://localhost:8080
| API Name | Url |
|---|---|
| Create student | /student/create |
| Get all students | /student/getAll |
| Get student by ID | /student/getById/id |
| Update student | /student/update/id |
| Delete student | /student/delete/id |