《问》How to Find the version of an installed and uninstalled npm package
《问》
How to Find the version of an installed and uninstalled npm packagefor globally installed packages
npm list -g | grepYOUR_PACKAGEfor local installed packages
npm list | grep YOUR_PACKAGE
the latest available version on the package
npm info YOUR_PACKAGE version
Comments