Flux is a pattern and
Redux is a library. ... Both
Flux and
Redux have actions. Actions can be compared to events (or what trigger events). In
Flux, an action is a simple JavaScript object, and that's the default case in
Redux too, but when using
Redux middleware, actions can also be functions and promises.
read more >>