Skip to content

Instantly share code, notes, and snippets.

@zzarcon
Created January 8, 2016 07:16
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zzarcon/c0e367756611cd5518a6 to your computer and use it in GitHub Desktop.
Save zzarcon/c0e367756611cd5518a6 to your computer and use it in GitHub Desktop.
Show the version of any npm package from command line
moduleVersion() {
str=`cat $1/package.json | grep -i '"version"'`
echo $str
}
$ moduleVersion node_modules/ember-cli
Outputs:
"version": "2.2.0-beta.1",
^^
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment