DEV Community

Discussion on: Messy Event Flows: Part 2 - What it should be

 
barryosull profile image
Barry O Sullivan

We don't use RX to implement projectors, so I can't really answer this. I've used it in the past, so can I imagine it would get difficult. For projectors, a simple implementation of the observer pattern tendsto works well.

React reducers are pretty much projectors, so their implementation is a good place to see it in action.

redux.js.org/docs/basics/Reducers....