Show HN: Redux Offline – Build Offline-First Apps for Web and React Native
1–10 of 42 posts
Re: Show HN: Redux Offline – Build Offline-First Apps for Web and React Native
#2Also, the optimistic updates with rollbacks in this implementation is pretty neat.
Re: Show HN: Redux Offline – Build Offline-First Apps for Web and React Native
#3Slightly off topic, but how do people manage state that aren't using Redux? When you google "redux alternatives", you typically get results for different flavors or variants of redux. But are there other fundamentally different paradigms for managing state? I love Redux, but I'm really curious what else is out. Also, the optimistic updates with rollbacks in this implementation is pretty neat.
Also, just storing state in your higher level components can work for much more complicated apps than many think.
Re: Show HN: Redux Offline – Build Offline-First Apps for Web and React Native
#4Slightly off topic, but how do people manage state that aren't using Redux? When you google "redux alternatives", you typically get results for different flavors or variants of redux. But are there other fundamentally different paradigms for managing state? I love Redux, but I'm really curious what else is out. Also, the optimistic updates with rollbacks in this implementation is pretty neat.
Re: Show HN: Redux Offline – Build Offline-First Apps for Web and React Native
#5Slightly off topic, but how do people manage state that aren't using Redux? When you google "redux alternatives", you typically get results for different flavors or variants of redux. But are there other fundamentally different paradigms for managing state? I love Redux, but I'm really curious what else is out. Also, the optimistic updates with rollbacks in this implementation is pretty neat.
Here is a comparison.
Re: Show HN: Redux Offline – Build Offline-First Apps for Web and React Native
#6Slightly off topic, but how do people manage state that aren't using Redux? When you google "redux alternatives", you typically get results for different flavors or variants of redux. But are there other fundamentally different paradigms for managing state? I love Redux, but I'm really curious what else is out. Also, the optimistic updates with rollbacks in this implementation is pretty neat.
> a JavaScript persistent and immutable (at least by default) data tree supporting cursors and enabling developers to easily navigate and monitor nested data through events.
It's a fairly simple library to read and understand and it's well written. I have a couple decent sized SPAs working on top of it, and I store the full data tree using localForage for offline use.
Re: Show HN: Redux Offline – Build Offline-First Apps for Web and React Native
#7Re: Show HN: Redux Offline – Build Offline-First Apps for Web and React Native
#8Slightly off topic, but how do people manage state that aren't using Redux? When you google "redux alternatives", you typically get results for different flavors or variants of redux. But are there other fundamentally different paradigms for managing state? I love Redux, but I'm really curious what else is out. Also, the optimistic updates with rollbacks in this implementation is pretty neat.
That said, these days I would never use anything but Redux. MobX is gaining traction as a viable alternative, but I just love having all possible mutations spelled out explicitly.
Re: Show HN: Redux Offline – Build Offline-First Apps for Web and React Native
#9I'm re-learning Redux now, does anyone else think that it might be overkill for an app that doesn't require any user input?
Re: Show HN: Redux Offline – Build Offline-First Apps for Web and React Native
#10Slightly off topic, but how do people manage state that aren't using Redux? When you google "redux alternatives", you typically get results for different flavors or variants of redux. But are there other fundamentally different paradigms for managing state? I love Redux, but I'm really curious what else is out. Also, the optimistic updates with rollbacks in this implementation is pretty neat.
Mobx v/s Redux does kick off the OOP v/s Functional debate, but as a developer my productivity and effectiveness is measured in terms of my ability to ship software not in terms of my programming style, and it's my personal belief that Mobx does make me more productive as compared to Redux.
For developers new to the whole Flux/Redux/Mobx/State Management world, I highly suggest to give Mobx a try.