javascript - Private NPM: How can the latest version of a module be installed? -
using private npm
, common commands seem not work:
npm install
without specific@version
:: issuenpm outdated
:: issuenpm update
:: issuenpm view <private-package-name> versions
:: (haven't found issue yet)- also note
npm v
,npm show
, ,npm info
aliases likewise don't work
- also note
frequently, not know latest version of private module team maintains. fall on 1 of commands listed above, seem inoperative. how can install package without knowing latest version?
if understand question, installing latest package be:
npm install <package_name>@latest --save
Comments
Post a Comment