November 2018
Beginner
502 pages
10h 22m
English
Before we install axios, we are going to quickly create our little React app:
npx create-react-app crud-api --typescript
Note that the version of React we use needs to be at least version 16.7.0-alpha.0. We can check this in the package.json file. If the version of React in package.json is older than 16.7.0-alpha.0, then we can install this version using the following command:
npm install react@16.7.0-alpha.0npm install react-dom@16.7.0-alpha.0
Read now
Unlock full access