December 2019
Intermediate to advanced
598 pages
12h 21m
English
Before we can use Redux, we need to install it, along with the TypeScript types. We will also install an additional library called Redux Thunk, which we need in order to implement asynchronous actions. Let's look at the steps to install Redux:
> npm install redux
Note that the core Redux library contains TypeScript types within it, so there is no need for an additional install for these.
> npm install react-redux ...
Read now
Unlock full access