Answers for "check version npm 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
5

find npm version

npm --version
Posted by: Guest on May-25-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 if a npm package is installed

npm list [package-name] || npm list -g [package-name]
Posted by: Guest on November-23-2020

Code answers related to "check version npm package"

Browse Popular Code Answers by Language