I wonder what percentage of the Angular community uses RxJs/store or another store manager.

I wonder what percentage of the Angular community uses RxJs/store or another store manager.

7 thoughts on “I wonder what percentage of the Angular community uses RxJs/store or another store manager.

  1. I think it comes down to the approach taken to explain the various frameworks. That can be a big deal because most programmers follow the tutorials and stick with them rather than working it out for themselves. I’d say that you can do much the same thing both frameworks with some helper function​s. Both frameworks are tiny.

    The main differences seem to be that Alt encourages more than one store and dependencies between them. Redux encourages a single store. One area that might be an issue although I doubt it is store contention. Redux simplifies this somewhat by insisting on immutable state and using state reducers as opposed to setter methods (ie old state in, new state out). I’m finding it hard to envisage situations where contention will happen. Javascript is single threaded after all.

    Like

Leave a comment