Skip to content

richardbristow/todo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Todo App

Lint, test, build, deploy

Netlify Status

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

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

Demo site

A deployed demo site is available at the link below:

https://a-todos-app.netlify.app

Other Info

This project was bootstrapped with Create React App.

You can find the most recent version of the Create React App guide here.