An open API service indexing awesome lists of open source software.

https://github.com/computationalcore/react-to-do-list

A react to-do list web app
https://github.com/computationalcore/react-to-do-list

Last synced: 10 months ago
JSON representation

A react to-do list web app

Awesome Lists containing this project

README

          

# React To-Do List

This is a simple To-Do list app done with React. All tasks are saved into browser's local storage only. The app development
was inspired by the first brazilian live coding of the [React Nanodegree Program](https://udacity.com/course/react-nanodegree--nd019).

Todo List

## Demo

[computationalcore.github.io/react-to-do-list](https://computationalcore.github.io/react-to-do-list)

## Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing
purposes.

### Prerequisites

The project can be built with npm or yarn, so choose one of the approach bellow in case you don't
have any installed on your system.

* npm is distributed with Node.js which means that when you download Node.js,
you automatically get npm installed on your computer. [Download Node.js](https://nodejs.org/en/download/)

or

* Yarn is a package manager built by Facebook Team and seems to be faster than npm in general. [Download Yarn](https://yarnpkg.com/en/docs/install)

### Installing

To download the project follow the instructions bellow

```
git clone https://github.com/computationalcore/react-to-do-list
cd myreads
```

Install dependencies and run with:

npm
```
npm install
npm start
```
or

yarn
```
yarn install
yarn start
```

## Versions

v1.0
* Default project implementation

v1.1
* Change to material UI based interface
* Task transitions animations
* Remove tasks capabilities

## Authors
Vin Busquet
* [https://github.com/computationalcore](https://github.com/computationalcore)

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details

## Acknowledgments
* [Udacity](https://www.udacity.com/)
* [Matheus Marsiglio](https://github.com/mtmr0x)
* [Thales Moreira Carvalho](https://github.com/thalescomp)