Blog server powered by Express and MongoDB
Nodejs is installed. (Update it to latest is better.)
Install Express via npm and MongoDB.
MongoDB is configurated and able to run.
Create a database named 'meanblog':
$ mongo
$ use meanblog
Install dependencies:
$ npm install
Start the server:
$ npm start
Start the server with auto-restart if there is a saved change:
$ npm restart