Answers for "see if npm package is installed"

16

npm check package version

local packages:
~$ npm list

globally installed packages:
~$ npm list -g

specific package:
~$ npm list <package>
Posted by: Guest on March-29-2020
0

how to check if npm is installed

npm -v

this shows the current version of npm installed, if it says it is not recognized then you don't have it installed yet
Posted by: Guest on October-29-2021

Code answers related to "see if npm package is installed"

Browse Popular Code Answers by Language