A simple todo app made with React.
All todo items get saved to localStorage if supported by the browser, otherwise they are save locally via cookies.
Install and start the app:
git clone https://github.com/richardbristow/todo.git
cd todo
npm install
npm start
The app will be available at: http://localhost:3000/
Run tests:
npm test
Lint code:
npm run lint # lint javascript and css
npm run lint:js # lint javascript
npm run lint:css # lint css
Build:
npm run build
A deployed demo site is available at the link below:
https://a-todos-app.netlify.app
This project was bootstrapped with Create React App.
You can find the most recent version of the Create React App guide here.