Bootstrap

nodejs 学习--NPM全局包管理

全局包是保存在电脑user目录下的,只需安装一次。

1.安装全局包

码农版:

npm install --global 包名

懒人版:

npm i -g 包名

2.查看已安装的所有全局包

npm ls -g

3查看已安装的指定包

npm ls -g 包名

3.更新全局包

npm update -g 包名

4.卸载全局包

npm rm -g  包名

;