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
- Host: GitHub
- URL: https://github.com/computationalcore/react-to-do-list
- Owner: computationalcore
- License: mit
- Created: 2017-10-22T18:43:29.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2022-05-29T16:17:11.000Z (almost 4 years ago)
- Last Synced: 2024-04-16T01:55:04.482Z (almost 2 years ago)
- Language: JavaScript
- Homepage: http://computationalcore.github.io/react-to-do-list
- Size: 2.47 MB
- Stars: 50
- Watchers: 3
- Forks: 46
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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).

## 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)