npm仓库源镜像的设置与查看:npm config set/get registry
Author:zhoulujun Date:
设置npm仓库源
设置为npm源地址
npm config set registry http://registry.npmjs.org
设置为淘宝镜像:
npm config set registry https://registry.npm.taobao.org --global
npm config set disturl https://npm.taobao.org/dist --global
当然,也可以单个指定:
npm --registry=https://registry.npm.taobao.org install react
当然,npm切换地址太不方便,再来一个cnpm:
npm install -g cnpm --registry=https://registry.npm.taobao.org
当然,这个仓库,可以自己建私有仓库,具体具体查看《NPM本地资源库搭建与使用 》。
当然也可以用nrm管理:https://www.npmjs.com/package/nrm
查看npm源
查看源,可以看到设置过的所有的源
npm config get registry
清除npm镜像设置
npm config delete registry
npm config delete disturl
当然,除了私有仓库的必要,个人觉得,没有必要替换npm 参考镜像。这年代,科学上网也简单呀,谷歌、油管、Ph不香么?
转载本站文章《npm仓库源镜像的设置与查看:npm config set/get registry》,
请注明出处:https://www.zhoulujun.cn/html/webfront/ECMAScript/nodejs/8570.html