Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 519 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 519 Bytes

Redux

  • Redux is a state management library for JavaScript apps.
  • We can use it with React, Angular, Vue, Vanilla JS

State Management Solutions

  • Flux (by Facebook)
  • Redux
  • MobX

Pros of Redux

  • Predictable State Changes
  • Centralized State
  • Easy Debugging
  • Preserve page state
  • Undo/redo
  • Ecosystem of add-ons

Cons of Redux

  • Complexity
  • Verbosity

When not to use Redux

  • Tight Budget
  • Small to medium-sized apps
  • Simple UI/data flow
  • Static data