Answers for "how to find version of 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
2

npm get latest version of package

npm show {pkg} version
Posted by: Guest on July-28-2020
0

check latest version of npm package

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

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

Browse Popular Code Answers by Language