Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

This prints the version of npm itself:

npm -v <package-name>

This prints a cryptic error:

npm version <package-name>

For some reason, probably because of the weird arguments ordering, or because of the false positives mentioned above, I just can't remember the proper command. So this question is a note for self that might help others.

share|improve this question

2 Answers

up vote 37 down vote accepted

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

The result should look like (package@version):

├─┬ 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 
share|improve this answer
That's useful too, thanks! – Laurent Couvidou Jun 13 '12 at 17:35
1  
On mac and linux it's nice to add " | grep module_name", to filter the desired module version. Especially when running globally with -g. For example: "npm list -g | grep express" to get the installed express version. – guya Apr 16 at 1:51

command to view latest version available:

npm view <package-name> version
share|improve this answer
3  
i believe this shows you the latest version available, but does not show you the version installed locally. Not sure from your question which one you are looking to do. – emilebaizel Aug 23 '12 at 6:41
Does it? Yeah I want the version installed locally! – Laurent Couvidou Aug 23 '12 at 7:37
@emilebaizel You're totally right, it's the latest version available, so Hippo's answer is the right way to find the version installed locally. – Laurent Couvidou Sep 4 '12 at 17:36
great. thanks for confirming it. – emilebaizel Sep 5 '12 at 20:54
Yes, this gets the latest version available. It's helpful because the package doesn't have to be installed, and you can discover a version number to add to package.json. However, it's not the right answer for this question. – Lance Fisher Nov 9 '12 at 5:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.