常用的命令行

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#版本信息
npm -v

#安装淘宝源镜像
npm config set registry https://registry.npm.taobao.org

#安装模块
npm install <module_name>

#卸载模块
npm uninstall <module_name>

#查看已安装包
npm list -g --depth 0

#修复有漏洞的依赖
npm audit fix