how to install latest version npm package code example
Example 1: how to install latest version of npm package
npm i -g <package name>@latest
npm i -g express@latest
npm outdated
npm update
npm i <package name>@latest
npm update "react" "react-dom"
Example 2: install an npm package
npm install package-name
To save as a dependency:
npm install package-name --save
Example 3: npm package version
Ex: 1.0.0
* npm version patch ---> 1.0.1
* npm version minor ---> 1.1.0
* npm version major ---> 2.0.0
npm version [<newversion> | major | minor | patch | premajor |
preminor | prepatch | prerelease [--preid=<prerelease-id>] | from-git]