Installing MEAN Software
The programming projects for this class require you to install Node.js and MongoDB. If you don't already have these packages installed on your laptop, follow the instructions below to install them.
Installing Node.js
Install the latest "Long Term Support (LTS)" version of Node.js (currently version 6.10.3). It can be downloaded from the URL https://nodejs.org/en/download. To verify you have Node.js and its package manager (npm), try running the commands:
node -v
npm -v
Installing MongoDB
Install the current stable release of MongoDB from the website
https://www.mongodb.org/downloads#production.
Unless you direct it otherwise, MongoDB will store the database in the directory /data/db
(C:\data\db on Windows). Make sure this directory exists and is writable by you before
starting the database.
To verify you have MongoDB installed and working try starting it with the command:
mongod
"waiting for connections on port 27017". The mongod doesn't exit until
the database is shut down so you will want to either run this in its own window or in background.
You should be able to directly interact with the MongoDB database by running the command:
mongo