Fork me on GitHub

npm uninstall -g

1
2
3
4
5
6
7
全局安装是:
$ npm install xxx -g
全局卸载是:
$ npm uninstall xxx -g
全局卸载后,查看全局安装的包:
$ npm list --depth=0 -global
发现还有残留,还有大量报错信息

解决方式

1
2
3
4
5
6
7
8
9
10
11
12
13
查看 npm 配置:
$ npm config list
; cli configs
metrics-registry = "https://registry.npmjs.org/"
scope = ""
user-agent = "npm/6.1.0 node/v10.6.0 darwin x64"

; node bin location = /youpath/node/v10.6.0/bin/node
; cwd = /youpath/node/v10.6.0/lib/node_modules
; HOME = /xxx
; "npm config ls -l" to show all defaults.
然后到 /youpath/node/v10.6.0/lib/node_modules 下 rm -rf 掉你想删掉的包
再次 npm list --depth=0 -global 后正常
-------------感谢您的阅读 有问题请留言(或mailto:frostbelt@sina.cn)-------------