Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/masfranzhuo/mongoose-express-crud

Node.js CRUD application based on the MongoDB database design and Express.js framework
https://github.com/masfranzhuo/mongoose-express-crud

express-js expressjs mongodb mongodb-database mongoose mongoose-express-crud node-crud nodejs

Last synced: about 1 month ago
JSON representation

Node.js CRUD application based on the MongoDB database design and Express.js framework

Awesome Lists containing this project

README

        

# Node.js mongoose express CRUD
Node.js CRUD application based on the MongoDB database design and Express.js framework

This Node.js CRUD code use
- Express.js framework
- mongoose ORM
```
npm install --save express mongoose body-parser
```

### Note:

Create collection name 'books' on 'example' database at MongoDB
```
use example
```
```
db.createCollection("books")
```