The todo application is developed using MERN (MongoDb, Express, React and Node) Stack. The below are the operations which can be performed in this todo apps
- We can create new task.
- We can mark the task as a complete if the task is completed, using check and unmark using uncheck.
- we can delete the task if the task is no longer needed.
To Run the project:
- Clone the repository
- To start the server change the path from the terminal using
cd server
command and run the commandnpm run dev
(For Backend) - To start the client change the path from the terminal using
cd client
command and run the commandnpm start
(For Frontend)