The project is a to-do App built using the MERN Stack.The different functionalities here are:-
- Create new task
- Read/Display all Tasks in AllTodos
- Update Task
- Delete Task
- Mark tasks as completed by clicking on the task which will result in a strike through
- Filter tasks based on their completion status as Completed or not completed
- Delete Completed Tasks
Backend
cd backend npm install
Update the MONGO_URI and PORT by creating a .env file
npm run start
Backend is up and running!
Frontend
cd frontend
npm install
npm run start
Frontend is up and running!