May 2017
Intermediate to advanced
388 pages
7h 30m
English
Minimongo is great at keeping a snapshot of the current data on the server-side MongoDB. To have a persisted state on the client, our options are to have local collections, session variables/reactive dictionaries, and/or components' internal state, which makes it hard to maintain with all globals and internals passing down from parent to children components.
Another benefit of using Redux is that your client data layer (the store) does not depend on the data source. The client can query data with HTTP, GraphQL, WebSockets, and gRPC (there is not yet support for the browser at the time of this writing, but that will probably change soon) and then pass it down for rendering.
With Redux, ...
Read now
Unlock full access