npm start Starts the development server.
npm run build Bundles the app into static files for production.
npm test Starts the test runner.
npm run eject Removes this tool and copies build dependencies, configuration files and scripts into the app directory. If you do this, you can’t go back!
We suggest that you begin by typing:
cd frontend npm start
--->Backend<---
npm i express body-parser cors dotenv mongoose passport-local-mongoose
express : for the connection between database and the web dev
body-parser : for the converting the database from Bson to json
cors :Cross Origin Resorce sharing to establish communication between react and the database
dotenv: to hide private data from the public and in the git also
Mongoose : for the database connectivity or driver
passport.js : used in the signup
passport-local-mongoose: to relate with Mongo
found 0 vulnerabilities