https://github.com/tribou/react-todo
A sample todo app with React and Flux in ES2015 (ES6) served by Hapi
https://github.com/tribou/react-todo
flux react
Last synced: about 1 year ago
JSON representation
A sample todo app with React and Flux in ES2015 (ES6) served by Hapi
- Host: GitHub
- URL: https://github.com/tribou/react-todo
- Owner: tribou
- License: apache-2.0
- Created: 2015-06-28T15:23:47.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2017-03-12T04:45:02.000Z (over 9 years ago)
- Last Synced: 2025-04-08T20:48:14.343Z (about 1 year ago)
- Topics: flux, react
- Language: JavaScript
- Homepage:
- Size: 1.46 MB
- Stars: 131
- Watchers: 7
- Forks: 29
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-todo
Another basic todo app in React and Flux
#### Run
```
npm install
npm start
```
#### Develop
Webpack auto-watches client assets.
Nodemon auto-watches server assets.
```
npm install
npm run dev
```
#### Build
Bundle the assets for production.
```
npm run build
```
#### Docker
Create and run the docker-compose environment
```
docker build -t todo .
docker-compose up
```