Frontend: TodoMVC React Github source
- Create new todo item
- Show todo items
- Update todo item
- Delete todo item
This todo project was bootstrapped with Create React App.
In the project directory, you can run:
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
- Create new todo item (POST/todolist)
- Show todo items (GET/todolist)
- Update todo item (PATCH/todolist/:id)
- Delete todo item (DELETE/todolist/:id)
- Delete all todo items (DELETE/todolist)
Run this to get all dependencies
Run this to start the mongodb server with nodemon so that changes to the files will refresh the server accordingly