Skip to content
Official React bindings for Redux
JavaScript CSS
Branch: master
Clone or download

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.github Create Feature_request.md Feb 27, 2020
docs doc(BasicTutorial): Broken link (#1579) May 6, 2020
src Fix error message typo in useSelector ('You must pass a selector...). ( May 7, 2020
test fix useSelector race condition with memoized selector when dispatchin… Apr 19, 2020
website change mapStateToProp to mapStateToProps (#1586) May 12, 2020
.babelrc.js Pass @babel/runtime version to @babel/plugin-transform-runtime (#1473) Nov 23, 2019
.eslintignore Initial import from gaearon/redux Jul 11, 2015
.eslintrc Switch back to plain Jest Apr 12, 2019
.gitignore Switch back to plain Jest Apr 12, 2019
.prettierrc Add `connect()` API doc (#1140) Dec 23, 2018
.travis.yml Switch back to plain Jest Apr 12, 2019
CHANGELOG.md reactjs -> reduxjs (#949) May 12, 2018
CNAME Create CNAME Oct 5, 2018
CODE_OF_CONDUCT.md Initial import from gaearon/redux Jul 11, 2015
CONTRIBUTING.md Switch back to plain Jest Apr 12, 2019
LICENSE.md Copyright year range Jan 6, 2017
README.md Add installation to readme (#1545) Mar 14, 2020
codecov.yml Update the codecov config to be more forgiving. Apr 4, 2019
jest.config.js Fix RN batching and effect behavior (#1444) Nov 6, 2019
package-lock.json Bump codecov from 3.5.0 to 3.6.5 (#1524) Feb 19, 2020
package.json 7.2.0 Feb 18, 2020
rollup.config.js Use Hooks internally (aka 7.0) (#1209) Apr 9, 2019

README.md

React Redux

Official React bindings for Redux.
Performant and flexible.

build status npm version npm downloads redux channel on discord

Installation

Using Create React App

The recommended way to start new apps with React Redux is by using the official Redux+JS template for Create React App, which takes advantage of Redux Toolkit.

npx create-react-app my-app --template redux

An Existing React App

React Redux 7.1 requires React 16.8.3 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.

React Native

As of React Native 0.18, React Redux 5.x should work with React Native. If you have any issues with React Redux 5.x on React Native, run npm ls react and make sure you don’t have a duplicate React installation in your node_modules. We recommend that you use npm@3.x which is better at avoiding these kinds of issues.

Documentation

The React Redux docs are now published at https://react-redux.js.org .

We're currently expanding and rewriting our docs content - check back soon for more updates!

How Does It Work?

We do a deep dive on how React Redux works in this readthesource episode.

Also, 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.

Enjoy!

License

MIT

You can’t perform that action at this time.