npm install package a version code example

Example 1: 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"

Example 2: npm package version

// How to increment your project 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 [ | major | minor | patch | premajor | 
preminor | prepatch | prerelease [--preid=] | from-git]

Tags:

Misc Example