npm upgrade all dependencies to latest code example
Example 1: update all dependencies npm package.json
npm i -g npm-check-updates
ncu -u
npm install
Example 2: how to install latest version of npm package
//For global packages
npm i -g @latest
npm i -g express@latest
//For loacal packages
npm outdated
npm update
//Manually updating local packages
npm i @latest
npm update "react" "react-dom"