https://github.com/mehediislamripon/CRUD-With-MongoDB-and-Mongoose
This is a simple node API to play CRUD with MongoDB and mongoose. Here you can create, read, update, and delete real data on your remote database.
https://github.com/mehediislamripon/CRUD-With-MongoDB-and-Mongoose
crud-application database-schema expressjs mongodb-crud nodejs
Last synced: 4 months ago
JSON representation
This is a simple node API to play CRUD with MongoDB and mongoose. Here you can create, read, update, and delete real data on your remote database.
- Host: GitHub
- URL: https://github.com/mehediislamripon/CRUD-With-MongoDB-and-Mongoose
- Owner: mehediislamripon
- Created: 2021-02-01T07:47:27.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-01T08:03:19.000Z (over 4 years ago)
- Last Synced: 2025-01-18T22:28:35.689Z (4 months ago)
- Topics: crud-application, database-schema, expressjs, mongodb-crud, nodejs
- Language: JavaScript
- Homepage:
- Size: 33.2 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# CRUD-With-MongoDB-and-Mongoose
## Features:
- Get all data (from remote database)
- Get single data by id (from remote database)
- Write data (in remote database)
- Update data by id (in remote database)
- Delete data by id (from remote database)## How To Run:
```
$ git clone https://github.com/MehedilslamRipon/CRUD-With-MongoDB-and-Mongoose.git$ cd CRUD-With-MongoDB-and-Mongoose
$ npm install
$ node server.js
```Now open `POSTMAN` and play with `CRUD`!