-
Notifications
You must be signed in to change notification settings - Fork 2
MEAN Stack
ivanab edited this page Aug 8, 2016
·
17 revisions
MEAN
- MongoDB
- Express
- AngularJs 2
- Node.js
Installation Guides
Philosophy/ "How it works"
Install MongoDB Community Edition From Tarball
https://docs.mongodb.com/manual/tutorial/install-mongodb-on-linux/
START SERVER: sudo mongod
START CLIENT: sudo mongo
EXIT: Ctrl+c
Mongoose - MongoDB Client
http://mongoosejs.com/
NOTE: MongoDB object modeling for Node.js; Schemas & Models; Validation; Intuitive Database Operations;
Mongoose:
- Introduction
http://mongoosejs.com/docs/guide.html - List of all operators
http://mongoosejs.com/docs/api.html#query-js - Validation
http://mongoosejs.com/docs/populate.html - Middleware
http://mongoosejs.com/docs/middleware.html
Database-as-a-Service for MongoDB
Web framework for Node.js - guide: