npm 常用指令
通过命令查看npm版本号
```bash npm -v ```
设置淘宝镜像源
npm config set registry https://registry.npm.taobao.org/
设置官方镜像源
npm config set registry https://registry.npmjs.org
查看镜像使用状态
npm config get registry
如果返回https://registry.npm.taobao.org/,说明配置的是淘宝镜像
如果返回https://registry.npmjs.org/,说明配置的是淘宝镜像
命令更新npm版本
```bash npm -g install npm@2.9.1 ```
再执行一下npm -v命令
```bash npm -v ```
可以看到修改后的npm版本