在 npm 中如何用好 registry

npm库

npm config set registry https://registry.npm.taobao.org

 

使用自定义库

npm --registry http://10.10.10.10 install express

 

可以通过以下配置进行验证

npm config get registry 

//或 npm info express

 

也可以使用cnpm

npm install -g cnpm --registry=https://registry.npm.taobao.org

 

上一篇:Linux系统中安装和卸载node


下一篇:vue项目运行