An all in one application to view social media feeds.
The following instructions will get you a copy of the project running on your local machine.
Our application runs off the MEAN Stack so the following dependencies are required.
You can download Node.js from their website
or through homebrew
brew install node
Download MongoDB from their website
or through homebrew
brew install mongodb
Download angular-cli through npm with
npm install -g @angular/cli
Once you have the source files, run
npm install
to compile the code in both root directory and angular-src folder.
Start MongoDB with
mongod
where you downloaded your mongo bin.
Navigate into the 'angular-src' folder and run
ng build
to compile your code into a public folder. You can then serve your application to localhost:8000 with
npm start