Redux is a JavaScript library that aims to simplify how we manage stateful data. Redux keeps all of our data in a single JS object called the Store. A single function, the reducer, is responsible for making modifications to the Store. We trigger the reducer by 'dispatching' an action - a JS object that describes how our data should change. The reducer function receives the action as an argument and makes changes accordingly. Other parts of the code (usually React Components) can subscribe to data in the Store. When data changes, Redux notifies subscribers of the change.
For further actions, you may consider blocking this person and/or reporting abuse
Latest comments (15)
If only it was that easy in practice.
This post shows it in the second part.
medium.com/p/9b2f2eabe9ab?source=l...
THIS IS IT : simple and accurate , thanks for the effort Ross
Very helpful bee-line through the BS!
Perfect!
Hows about:
ReduxJS is how you can have globals in javascript without losing the plot.
Request : Node, Polymer, Angular 4
an undervalued library
This guy's video was very helpful for me.... youtube.com/watch?v=1w-oQ-i1XB8
YESSSSS!!!!! THANK YOU!