This is survey management website in which you can add and take surveys. The WebApp is built on the MERN stack.
client folder has the react project.
api folder has the backend written in expressJS
A local mongod server is necessary to be running in the background
# Backend deps
cd api
npm install
# Frontend deps
cd client
npm install
# For frontend
cd client
npm run server
# For backend
cd api
nodemon server.js