https://lighthearted-fox-2d89be.netlify.app/
Welcome to our super simple TODO app! Here, you can easily sign up and log in. Once you're in, you can create tasks, update them if things change, and even delete tasks when you're done. I make sure everything is easy to use, Let's get organized and productive together!
- Signup and Login
- Create Task
- Update Task
- Delete Task
- Display all tasks
- React js
- Node js
- Express js
- MongoDB
- clone repo
- cd backend
- npm install
- node index.js
- clone repo
- cd frontend
- npm install
- npm start
- https://todo-6odt.onrender.com
- POST /user/signup - signup
- POST /user/login - login
- POST /todo/create - create new task
- GET /todo/get/all - get all tasks
- GET /todo/get/:id - get a single task
- PUT /todo/update/:id - update a task
- DELETE /todo/delete/:id - delete a task