https://github.com/motasimfoad/crud-api-node-express-mongo
basic CRUD operation nodeJS api boilerplate with MongoDB & Express.
https://github.com/motasimfoad/crud-api-node-express-mongo
express mongoclient mongodb nodejs
Last synced: 3 months ago
JSON representation
basic CRUD operation nodeJS api boilerplate with MongoDB & Express.
- Host: GitHub
- URL: https://github.com/motasimfoad/crud-api-node-express-mongo
- Owner: motasimfoad
- Created: 2020-04-14T11:33:08.000Z (about 5 years ago)
- Default Branch: Master
- Last Pushed: 2022-12-12T12:51:33.000Z (over 2 years ago)
- Last Synced: 2025-01-24T12:14:18.025Z (4 months ago)
- Topics: express, mongoclient, mongodb, nodejs
- Language: JavaScript
- Homepage: https://motasimfoad.com/
- Size: 182 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CRUD-API_NODE_EXPRESS_MONGO
basic CRUD operation nodeJS api boilerplate with MongoDB & Express.If you have any queries feel free to ping me via https://motasimfoad.com/contact
Its a simple note keeping api containing 2 felds, Title and Description. Which take post request and intermingle with MongoDB on Localhost.
###Properties & Endpoints :
CREATE endpoint >> localhost:4200/notes/
>> POST body {
title : "String"
desc : "String"
}UPDATE endpoint >> localhost:4200/notes/{id}
>> PUT body {
title : "String"
desc : "String"
}READ/FIND endpoint >> localhost:4200/notes/{id}
>> GETDELETE endpoint >> localhost:4200/notes/{id}
>> DELETE