npm指令集
全局安装
$ npm install *** -g # or $ npm i ** -g
项目安装
# 保存到package.json $ npm install ** --save # or $ npm install ** -S # or $ npm i ** --save # or $ npm i ** -S # 不保存到package.json $ npm install ** # or $ npm i **
清除缓存
npm cache clean -f
查看npm全局安装的包
npm list -g --depth 0