Answers for "npm how to check version of package"

11

npm check package version

local packages:
~$ npm list

globally installed packages:
~$ npm list -g

specific package:
~$ npm list <package>
Posted by: Guest on March-29-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
0

check latest version of npm package

npm show {pkg} version
Posted by: Guest on June-18-2021

Code answers related to "npm how to check version of package"

Browse Popular Code Answers by Language