https://github.com/hoppula/react-immutable-todomvc
React TodoMVC with Immutable.js
https://github.com/hoppula/react-immutable-todomvc
Last synced: about 1 year ago
JSON representation
React TodoMVC with Immutable.js
- Host: GitHub
- URL: https://github.com/hoppula/react-immutable-todomvc
- Owner: hoppula
- Created: 2014-09-01T13:27:01.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-10-08T14:13:51.000Z (over 11 years ago)
- Last Synced: 2025-05-07T22:09:47.202Z (about 1 year ago)
- Language: JavaScript
- Size: 719 KB
- Stars: 31
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React TodoMVC with Immutable.js
[TodoMVC](http://todomvc.com/) example app written in [CoffeeScript](http://coffeescript.org/) (+ [cjsx](https://github.com/jsdf/coffee-react)) using [React](http://facebook.github.io/react/) & [Immutable.js](https://github.com/facebook/immutable-js).
Persists data to Local Storage after changes.
Uses browserify for builds and watchify for live builds.
Live demo available @ [https://rawgit.com/hoppula/react-immutable-todomvc/master/public/index.html](https://rawgit.com/hoppula/react-immutable-todomvc/master/public/index.html)
## Up and Running
First, clone the repo...
`git clone git@github.com:hoppula/react-immutable-todomvc.git`
Then install the npm and bower modules
```
$ npm install
$ npm run bower
```
build
```
$ npm run build
```
watch
```
$ npm run watch
```
start server
```
$ npm run server
```
then go to [http://localhost:4000/](http://localhost:4000/)