Earlier quoted context omitted.
Its evented, not normally event-sourced. I don't know of many production uses of redux that also store the events for replay.
Redux in its essensce encourages half assed event sourcing. Why do i need to memoise my state to stop the react render loop from happening? Isnt my event the source of truth? Its much more then a DTO. Once your application becomes "event centric" instead of "state centric" you start to actually break free of the procedural paradgim and really become functional reactive. Redux to me is DDD and ES for non-programmers.…
Re: Redux-query – A React/Redux library for querying and managing network state
#61An app really becomes an app instead of a view layer for a CRUD API once you start adding in business logic, permissions, unstable networks, etc. I'd love to see a Redux example app that handles those things as cleanly as it handles simple cases.