Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
React Redux | 22,981 | 140,108 | 17,998 | 14 hours ago | 126 | July 29, 2023 | 22 | mit | TypeScript | |
Official React bindings for Redux | ||||||||||
Connected React Router | 4,731 | 2,066 | 710 | 7 months ago | 51 | July 11, 2022 | 175 | mit | JavaScript | |
A Redux binding for React Router v4 | ||||||||||
Store | 501 | 2 years ago | 4 | October 09, 2017 | Swift | |||||
Unidirectional, transactional, operation-based Store implementation. | ||||||||||
Polymer Redux | 453 | 16 | 3 | 4 years ago | 19 | October 29, 2018 | 29 | mit | JavaScript | |
Polymer bindings for Redux. | ||||||||||
React Intl Redux | 300 | 155 | 71 | 3 months ago | 29 | May 09, 2022 | 5 | mit | JavaScript | |
Redux binding for React Intl. | ||||||||||
Droidux | 164 | 6 years ago | 5 | apache-2.0 | Java | |||||
"Predictable state container" implementation, inspired by Redux. | ||||||||||
Woowahanjs | 160 | 7 | 6 years ago | 37 | February 26, 2018 | 9 | JavaScript | |||
웹 어플리케이션 개발을 위한 JS프레임워크 | ||||||||||
Platform | 141 | 421 | 45 | 3 years ago | 83 | May 04, 2019 | 44 | mit | TypeScript | |
[Unmaintained] Redux bindings and utilities for Angular | ||||||||||
Connected Next Router | 105 | 5 | a month ago | 23 | September 11, 2022 | 13 | mit | TypeScript | ||
A Redux binding for Next.js Router compatible with Next.js. | ||||||||||
Roact Rodux | 74 | 8 months ago | 3 | apache-2.0 | Lua | |||||
A connector between Roact and Rodux, similar to react-redux |
Official React bindings for Redux.
Performant and flexible.
The recommended way to start new apps with React Redux is by using the official Redux+JS/TS templates for Create React App, which takes advantage of Redux Toolkit.
# JS
npx create-react-app my-app --template redux
# TS
npx create-react-app my-app --template redux-typescript
React Redux 8.0 requires React 16.8.3 or later (or React Native 0.59 or later).
To use React Redux with your React app, install it as a dependency:
# If you use npm:
npm install react-redux
# Or if you use Yarn:
yarn add react-redux
You'll also need to install Redux and set up a Redux store in your app.
This assumes that you’re using npm package manager with a module bundler like Webpack or Browserify to consume CommonJS modules.
If you don’t yet use npm or a modern module bundler, and would rather prefer a single-file UMD build that makes ReactRedux
available as a global object, you can grab a pre-built version from cdnjs. We don’t recommend this approach for any serious application, as most of the libraries complementary to Redux are only available on npm.
The React Redux docs are published at https://react-redux.js.org .
The post The History and Implementation of React-Redux explains what it does, how it works, and how the API and implementation have evolved over time.
There's also a Deep Dive into React-Redux talk that covers some of the same material at a higher level.