Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

redux install

################# 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
Source by redux.js.org #
 
PREVIOUS NEXT
Tagged: #redux #install
ADD COMMENT
Topic
Name
3+4 =