This repository provides a reference implementation of the TodoMVC application written using MobX, React and Typescript.
npm install
npm start
open http://localhost:3000
The example requires node 4.0 or higher
If you are new to MobX, take a look at the ten minutes, interactive introduction to MobX and React. MobX provides a refreshing way to manage your app state by combining mutable data structures with transparent reactive programming.
The state of this app is defined in a single state object, a pattern borrowed from redux.
The project uses hot-reloading so most changes made to the app will be picked automatically.