NodeJS
Basic Setup : 1. NPM 2. Node 3. MongoDB NVM (Node Version Manager) : used for keeping multiple versions of NodeJS NPM : Node Package Manager: a javascript package manager. MongoDB: Document database which stores data in JSON format. mLabs is cloud service for free sandbox of MongoDB upto 500MB MongoDB GUI: Compass can be used. To check the version of node: node -v mongo -v npm -v To Start the server for MongoDB: mongod Express Express is a lightweight web application framework for Node.js, which provides us with a robust set of features for writing web apps. These features include such things as route handling, template engine integration and a middleware framework, which allows us to perform additional tasks on request and response objects. There is nothing you can do in Express that you couldn’t do in plain Node.js, but using Express means we don’t have to re-invent the wheel and reduces boilerplate. ...
Comments