Directions to run
-
Install Homebrew (link)
-
Install MongoDB
brew install mongodb
-
Install Node dependencies
brew install node //if you don't have node installed already npm install
-
Start MongoDB server
brew services start mongodb
-
Start node server
node app.js
-
Server is now running on: localhost:3000
-
When done, turn off Mongodb server to prevent issues when using in the future
brew services stop mongodb