Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

check latest version of npm package

 command syntext
 npm view your-packageName version
 or 
 npm list your-packageName
 or get all installed package
 npm list
 
 
 or find latest version
 npm show your-packageName version

 
 example
 npm view firebase version 
 Above command will return the firebase version installed in my node project

 To find any npm package version which is installed in your app you can find from package.json file 
 or you can command.
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #check #latest #version #npm #package
ADD COMMENT
Topic
Name
8+2 =