Redux is a state management library for JavaScript applications, often used with React. It helps manage the global state of an application in a centralized way, ensuring data remains consistent and predictable.
Store
Holds the entire application state.
There is only one store per application.
Actions
Represent events that trigger state changes.
Are simple JavaScript objects with a type
property and optional data (payload
).
Reducers
Functions that calculate the new state based on an action.
They are pure functions, meaning they have no side effects.
Dispatch
A method used to send actions to the store.
Selectors
Functions that extract specific values from the state.
Simplifies state management in large applications.
Prevents prop drilling in React components.
Makes state predictable by enforcing structured updates.
Enables debugging with tools like Redux DevTools.
If Redux feels too complex, here are some alternatives:
React Context API – suitable for smaller apps
Zustand – a lightweight state management library
Recoil – developed by Facebook, flexible for React