Skip to main content
btheo.com btheo.com > press start to play
NEW POST: NODE.JS SECURITY 2025 OPEN FOR FREELANCE 10+ YEARS EXP REACT × NODE × AWS NEW POST: NODE.JS SECURITY 2025 OPEN FOR FREELANCE 10+ YEARS EXP REACT × NODE × AWS
TIL · 06 JAN 2025 · NOTE #002 ESC
TIL NOTE #002

When Not to Use Redux

Redux is overkill for simple state management.
Before using Redux, ask:

  1. Can this be handled with React Context?
  2. Does this require global state, or can it be component-level?
  3. Will Redux introduce unnecessary complexity?

For small to medium apps, Zustand or useReducer() is often a better choice.