npm install redux
# NPM
npm install redux
# Yarn
yarn add redux
NPM - npm install @reduxjs/toolkit
Yarn - yarn add @reduxjs/toolkit
yarn add redux react-redux --save
npm i --save redux react-redux redux-thunk // You will need these redux packages
################# Installation ###################
### Redux Toolkit ###
npm install @reduxjs/toolkit
### Redux Core ###
npm install redux
### Complementary Packages ###
npm install react-redux
npm install --save-dev @redux-devtools/core
### Create a React Redux App ###
# Redux + Plain JS template
npx create-react-app my-app --template redux
# Redux + TypeScript template
npx create-react-app my-app --template redux-typescript
npm i redux react-redux
aka
Copynpm install redux
npx create-react-app <name> --template redux // without typescript
npx create-react-app <name> --template redux typescript // with typescript