Answers for "npm i version"

6

install exact version npm

npm install <package>@<version>

//example
npm install [email protected]
Posted by: Guest on July-03-2020
3

checking the npm version

// Any of the below command will work.

npm -v
npm --v
npm -version
npm --version
Posted by: Guest on June-08-2021
5

check npm version

npm -v
Posted by: Guest on April-26-2020
2

npm install version

npm i -g npm@version_number
Posted by: Guest on August-01-2021
9

how to install specific package version npm

$ npm install [email protected]

+ [email protected]
added 48 packages from 36 contributors and audited 121 packages in 2.986s
found 0 vulnerabilities
Posted by: Guest on June-17-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language