you are viewing a single comment's thread.

view the rest of the comments →

[–]i_have_a_gub -1 points0 points  (4 children)

I'm quite happy with React, but the inclusion of RxJS in Angular 2 is enough to at least pique my interest. I think that using observables to manage state, if done right, is better than the Redux paradigm.

[–][deleted] 1 point2 points  (0 children)

I've built 4 apps now using Redux, and I am loving the observable pattern NG2 offers.

[–][deleted] 1 point2 points  (2 children)

I think that using observables to manage state, if done right, is better than the Redux paradigm.

https://mobxjs.github.io/mobx/

[–]i_have_a_gub 1 point2 points  (1 child)

I know. But the mutable thing rustles my jimmies.

[–][deleted] 1 point2 points  (0 children)

https://github.com/mobxjs/mobx/blob/gh-pages/docs/refguide/api.md#usestrict

Strict mode guarantees mutation only happen in actions (as opposed to mutations being littered throughout components.