Hacker News new | ask | show | jobs
by barake 3353 days ago
I was curious too, so: https://github.com/Microsoft/ReSub

Looks similar to rxjs or mobx based state stores.

2 comments

I've very successfully used the observable pattern since backbone/knockout days with Spine, on web, node, and Titanium. It is easy to create reusable components and follow the data flow, regardless of data source or view implementation.

These days I use virtual DOM for performance but the architecture hasn't changed in years. The observable pattern with viewmodels is very efficient.

More like vanilla flux and sugar around `store.subscribe`.