Wednesday, March 27, 2019

node.js - Find the version of an installed npm package




How to find the version of an installed node.js/npm package?



This prints the version of npm itself:



npm -v 


This prints a cryptic error:




npm version 


This prints the package version on the registry (i.e. the latest version available):



npm view  version


How do I get the installed version?


Answer




npm list for local packages or npm list -g for globally installed packages.



You can find the version of a specific package by passing its name as an argument. For example, npm list grunt will result in:



projectName@projectVersion /path/to/project/folder
└── grunt@0.4.1


Alternatively, you can just run npm list without passing a package name as an argument to see the versions of all your packages:




├─┬ cli-color@0.1.6 
│ └── es5-ext@0.7.1
├── coffee-script@1.3.3
├── less@1.3.0
├─┬ sentry@0.1.2
│ ├── file@0.2.1
│ └── underscore@1.3.3
└── uglify-js@1.2.6



You can also add --depth=0 argument to list installed packages without their dependencies.


No comments:

Post a Comment

plot explanation - Why did Peaches' mom hang on the tree? - Movies & TV

In the middle of the movie Ice Age: Continental Drift Peaches' mom asked Peaches to go to sleep. Then, she hung on the tree. This parti...