Setting Up MEAN Development Environment for CS5220This guide is for setting up a MEAN (MongoDB, Express, Angular, Node.js) development environment for CS5220 on Windows. MongoDBDownload and install the latest MongoDB Community Server from MongoDB. Unlike some other DBMS, MongoDB does not automatically create and start a Windows service during installation. Please read the tutorial for your platform (e.g. Windows, OS X, Ubuntu). Node.js and NPM PackagesDownload and install Node.js 8.x from nodejs.org. We will also need the following global packages:
To install a package globally (meaning the package will be available to all projects instead of being used by only one project), open a command prompt and run the following command: npm install -g <package_name> For example, to install eslint, simply run "npm install -g eslint". Visual Studio CodeWhich
|