npm install 安装模块
npm install 模块名
npm uninstall 卸载模块
npm uninstall 模块名
npm outdated 检测模块是否已经过时
npm outdated 模块名
npm ls 查看安装的模块
npm ls
查看全局安装的模块和依赖
npm ls -g
npm help 查看某条命令的详细帮助
例: npm help install
npm root 查看包的安装路径
npm root [-g]
```
##### 如安装淘宝镜像
```
npm install -g cnpm --registry=https://registry.npm.taobao.org
```
##### 最常用命令清除npm本地缓存
```
npm cache clean
```
网友评论