adiospace / mobservable-react-todomvc

TodoMVC reference implementation on top of react-mobservable-boilerplate

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React + MOBservable TodoMVC Example

This repository provides a reference implementation of the TodoMVC application written using Mobservable, React JSX and ES6.

Running the example

npm install
npm start
open http://localhost:3000

TodoMVC

Changing the example

If you are new to Mobservable, take a look at the five minute, interactive introduction to Mobservable and React. Mobservable provides a refreshing way to manage your app state by combining mutable data structures with transparent reactive programming.

The state and actions of this app are defined in two stores; todoModel and viewModel. This is not necessary but it provides a nice separation of concerns between data that effects the domain of the application and data that affects the user interface of the application. This is a useful distinction for testing, reuse in backend services etc.

The project uses hot-reloading so most changes made to the app will be picked automatically. By default the mobservable-react-devtools are enabled as well. During each rendering a small render report is printed on all updated components. The dev-tools can be disabled by commenting the import statement in src/index.js.

About

TodoMVC reference implementation on top of react-mobservable-boilerplate

License:MIT License


Languages

Language:JavaScript 87.7%Language:HTML 12.3%