Observable data. Reactive functions. Simple code.
npm install mobservable
##### _Observable data. Reactive functions. Simple code._




* New to Mobservable? Take the five minute, interactive introduction
* Official documentation
* Mobservable talk on Reactive2015
Mobservable enables your data structures to become observable.
Next to that it can make your functions (or React components) reactive, so that they re-evaluate whenever relevant data is altered.
It's like Excel for JavaScript: any data structure can be turned into a 'data cell', and every function or user interface component can be turned into a 'formula' that updates automatically.
Mobservable is unopiniated about which data structures to use;
it can work with mutable objects, arrays, (cyclic) references, classes etc.
So that your actions, stores and user interface can remain KISS.
Besides that, it is fast.
Mobservable can be summarized in two functions that will fundamentally simplify the way you write React applications.
Let's start by building a really really simple timer application:
``javascript
var timerData = mobservable.observable({
secondsPassed: 0
});
setInterval(function() {
timerData.secondsPassed++;
}, 1000);
var Timer = mobservable.observer(React.createClass({
render: function() {
return (Seconds passed: { this.props.timerData.secondsPassed } )
}
}));
React.render(
`
In the example above the timerData data structure is made observable and the Timer component is turned into an observer.
Mobservable will automatically track all relations between _observable data_ and _observing functions (or components)_ so that the minimum amount of observers is updated to keep all observers fresh.
Its as simple as that. In the example above the Timer will automatically update each time the property timerData.secondsPassed is altered. This is because setter notifies the Timer observer.
The actual interesting thing about this approach are the things that are not in the code:
* The setInterval method didn't alter. It still treats timerData as a plain JS object.Timer
* If the component would be somewhere deep in our app; only the Timer would be re-rendered. Nothing else (sideways data loading).
* There are no subscriptions of any kind that need to be managed.
* There is no forced UI update in our 'controller'.
* There is no state in the component. Timer is a dumb component.
* This approach is unobtrusive; you are not forced to apply certain techniques like keeping all data denormalized and immutable.
* There is no higher order component that needs configuration; no scopes, lenses or cursors.
* There is no magic context being passed through components.
* npm install mobservable --save.npm install mobservable-react --save
* For (Native) React apps as well. You might also be interested in the dev tools for React and Mobservable.
* Five minute interactive introduction to Mobservable and React
For the full api, see the API documentation.
This is an overview of most important functions available in the mobservable namespace:
observable(value, options?)
The observable function is the swiss knife of mobservable and enriches any data structure or function with observable capabilities.
autorun(function)
Turns a function into an observer so that it will automatically be re-evaluated if any data values it uses changes.
observer(reactJsComponent)
The observer function (and ES6 decorator) from the mobservable-react turns any Reactjs component into a reactive one.
From there on it will responds automatically to any relevant change in _observable_ data that was used by its render method.
* Online: Live edit the Todo example from the introduction.
* Online: Simple timer example on JSFiddle.
* Repo: Minimal boilerplate repostory.
* Repo: Full TodoMVC implementation.
* External example: The ports of the _Notes_ and _Kanban_ examples of the "SurviveJS - Webpack and React".
* Official homepage introduction
* Making React reactive: the pursuit of high performing, easily maintainable React apps
* SurviveJS interview on Mobservable, React and Flux
* Pure rendering in the light of time and state
Mobservable is inspired by Microsoft Excel and existing TFRP implementations like MeteorJS tracker, knockout and Vue.js.
> _Elegant! I love it!_
> ‐ Johan den Haan, CTO of Mendix
> _We ported the book Notes and Kanban examples to Mobservable. Check out the source to see how this worked out. Compared to the original I was definitely positively surprised. Mobservable seems like a good fit for these problems._
> ‐ Juho Vepsäläinen, author of "SurviveJS - Webpack and React" and jster.net curator
> _Great job with Mobservable! Really gives current conventions and libraries a run for their money._
> ‐ Daniel Dunderfelt
> _I was reluctant to abandon immutable data and the PureRenderMixin, but I no longer have any reservations. I can't think of any reason not to do things the simple, elegant way you have demonstrated._
> ‐David Schalk, fpcomplete.com
* Feel free to send pr requests.
* Use npm test to run the basic test suite, npm run converage for the test suite with coverage and npm run perf` for the performance tests.