A full-stack Todo application built using ReactJs and Redux for the frontend and Node.js, Express, and MongoDB for the backend.
Follow these instructions to set up and run the project locally on your machine.
- Download and install MongoDB from the official website.
- Start MongoDB by running the following commands in separate terminal windows:
mongod mongosh
- Install all the packages required for front end and backend by going to respecitve folder and executing
//Front end cd ./todo npm install //Backend cd ../todoserver npm install - Then after that , need to run execute
npm run start // start react Front-end app nodemon index.js // start Backend node app - Then navigate to the localhost:3000 to start exploring my app .