- For Linux:
curl -sL https://deb.nodesource.com/setup_13.x | sudo -E bash -
sudo apt-get install -y nodejs
- For Mac:
brew install node
Install the community edition here.
instructions to run code:
npm install -g create-react-app
- Run Mongo daemon:
sudo mongod
Mongo will be running on port 27017.
- Run Express Backend:
cd backend/
npm install
npm start
- Run React Frontend:
cd frontend
npm install
npm install nodemailer
npm start