redux
Last updated
Was this helpful?
Last updated
Was this helpful?
Redux is a predictable state container for JavaScript apps. (Not to be confused with a WordPress framework – .)
It helps you write applications that behave consistently, run in different environments (client, server, and native), and are easy to test. On top of that, it provides a great developer experience, such as .
You can use Redux together with , or with any other view library. It is tiny (2kB, including dependencies).
Learn Redux from its creator: (30 free videos) > (27 free videos)
Jing Chen, creator of Flux
Bill Fisher, author of Flux documentation
André Staltz, creator of Cycle
Also read:
I wrote Redux while working on my React Europe talk called . My goal was to create a state management library with minimal API but completely predictable behavior, so it is possible to implement logging, hot reloading, time travel, universal apps, record and replay, without any buy-in from the developer.
Redux evolves the ideas of , but avoids its complexity by taking cues from . Whether you have used them or not, Redux only takes a few minutes to get started with.
To install the stable version:
The whole state of your app is stored in an object tree inside a single store. The only way to change the state tree is to emit an action, an object describing what happened. To specify how the actions transform the state tree, you write pure reducers.
That's it!
Instead of mutating the state directly, you specify the mutations you want to happen with plain objects called actions. Then you write a special function called a reducer to decide how every action transforms the entire application's state.
If you're coming from Flux, there is a single important difference you need to understand. Redux doesn't have a Dispatcher or support many stores. Instead, there is just a single store with a single root reducing function. As your app grows, instead of adding stores, you split the root reducer into smaller reducers independently operating on the different parts of the state tree. This is exactly like how there is just one root component in a React app, but it is composed out of many small components.
This architecture might seem like an overkill for a counter app, but the beauty of this pattern is how well it scales to large and complex apps. It also enables very powerful developer tools, because it is possible to trace every mutation to the action that caused it. You can record user sessions and reproduce them just by replaying every action.
So, what are you waiting for?
Almost all examples have a corresponding CodeSandbox sandbox. This is an interactive version of the code that you can play with online.
MIT
This assumes you are using as your package manager.
If you're not, you can , download them, or point your package manager to them.
Most commonly people consume Redux as a collection of modules. These modules are what you get when you import redux
in a , , or a Node environment. If you like to live on the edge and use , we support that as well.
If you don't use a module bundler, it's also fine. The redux
npm package includes precompiled production and development builds in the . They can be used directly without a bundler and are thus compatible with many popular JavaScript module loaders and environments. For example, you can drop a UMD build as a on the page, or . The UMD builds make Redux available as a window.Redux
global variable.
The Redux source code is written in ES2015 but we precompile both CommonJS and UMD builds to ES5 so they work in . You don't need to use Babel or a module bundler to .
Most likely, you'll also need and .
Note that unlike Redux itself, many packages in the Redux ecosystem don't provide UMD builds, so we recommend using CommonJS module bundlers like and for the most comfortable development experience.
is a video course consisting of 30 videos narrated by Dan Abramov, author of Redux. It is designed to complement the “Basics” part of the docs while bringing additional insights about immutability, testing, Redux best practices, and using Redux with React. This course is free and will always be.
Sandrino Di Mattia
Chris Dhanaraj
Eddie Zaneski
Dan
Laurence Roberts
If you enjoyed my course, consider supporting Egghead by . Subscribers have access to the source code for the example in every one of my videos, as well as to tons of advanced lessons on other topics, including JavaScript in depth, React, Angular, and more. Many are also open source library authors, so buying a subscription is a nice way to thank them for the work that they've done.
For PDF, ePub, and MOBI exports for offline reading, and instructions on how to create them, please see: .
For Offline docs, please see:
()
(, )
(, )
(, )
(, )
(, )
(, )
(, )
()
(, )
If you're new to the NPM ecosystem and have troubles getting a project up and running, or aren't sure where to paste the gist above, check out that uses Redux together with React and Browserify.
Join the channel of the Discord community.
for a great intro to modeling state updates with reducers;
for blowing my mind;
for convincing me that re-evaluation should “just work”;
for Hot Module Replacement;
for teaching me to approach Flux without boilerplate or singletons;
for a proof of concept of hot reloadable Stores;
for proving this architecture can be performant;
for popularizing the idea of a single state atom;
for showing how often a function is the best tool;
for the pragmatic innovation.
Special thanks to for handing over the redux
NPM package name.
You can find the official logo .
This project adheres to . Every release, along with the migration instructions, is documented on the Github page.
The work on Redux was . Meet some of the outstanding companies that made it possible:
, as well as the always-growing list of .