windows下npm update -g是否有bug?

间歇性抽风,发现好几次了,明明npm上有新版本,却怎么更新都不去下载新版。
非得要用npm install xxx@latest -g才能下载新版本。

阅读 3.5k
1 个回答

看下npm版本,2.6.1以上才支持npm update -g
更新npm版本的方法是
npm install npm@latest -g

p.s.
查看是否有更新可以执行命令
local package: npm outdated
global package: npm outdated -g --depth=0

推荐问题