标签:exp npm 设置 get set nbsp tao 镜像 其他
查看npm配置
npm config list
查看npm镜像registry地址
npm config get registry
https://registry.npmjs.org/
1 临时使用其他镜像安装 express
npm install express --registry https://registry.npm.taobao.org
2 更改镜像地址(持久使用)
npm config set registry https://registry.npm.taobao.org
3通过cnpm使用
npm install -g cnpm --registry=https://registry.npm.taobao.org
使用 cnpm install express
标签:exp npm 设置 get set nbsp tao 镜像 其他
原文地址:https://www.cnblogs.com/shichangchun/p/11653372.html