An open API service indexing awesome lists of open source software.

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: 2 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.

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`!