Mac npm命令使用
- 安装
$ npm install xxx // 本目录安装
$ npm install -g xxx // 全局安装
- 安装
cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
-
npm官方源管理工具
-
清除Node.js的cache
$ npm cache clean -f
If you’re sure you want to delete the entire cache, rerun this command with --force.
如果确定要删除整个缓存,请使用–force重新运行此命令。
I sure hope you know what you are doing.
我希望你知道你在做什么。
- 自我更新到最新版本
$ npm install npm@latest -g // 升级到最新版
$ npm install npm@xxx -g // 升级到指定版本
或
$ npm install npm -g // 升级到最新版
- 版本信息
$ npm version // 查看版本详情
$ npm view npm version // npm最新版本
$ npm view npm versions // npm所有版本
- 插件
$ npm list //插件清单