I need to install axios latest version in my project. Currently axios version in package.json mentioned "axios": "^0.19.2",. How do i upgrade to latest version?
"axios": "^0.19.2",
Just use the npm command it will automatically update it.
npm
npm install axios
npm i axios
Should install the latest version by default.
You can try or you can try with specific version as well (npm i axios@0.20.0-0)
And also you can always check for version at here