Hacker News new | ask | show | jobs
by liminal18 2691 days ago
there are a lot of options out there and this thread kind of surprised me was expecting more interesting submissions. you might want to look at the original flux:

https://github.com/facebook/flux

from facebook if you app has a lot of global state needs multiple stores can be handy.

Mobx is great too:

https://github.com/mobxjs/mobx

With the current project I am working on we actually just vanilla javascript with singeltons with subscriptions (note: I did not write this, but I think it is rxjs).

anyways someone should come along with some answers.

Redux is still the easiest and with Sagas is really cool. One start up I interviewed with was using something similar to hooks, but do not remember the name of it.

Also datomic (used by om.next in clojurescript) has some really clever optimizations and is a joy to use.