npm - how to show the latest version of a package
If you're looking for the current and the latest versions of all your installed packages, you can also use:
npm outdated
You can use:
npm show {pkg} version
(so npm show express version
will return now 3.0.0rc3
).