C/C++教程

npm和cnpm命令切换

本文主要是介绍npm和cnpm命令切换,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

方法一: 由npm切换cnpm镜像地址

1.切换淘宝源

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

2.验证配置

npm config get registry

3.使用cnpm

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

方法二: 由cnpm切换npm镜像地址

1.切换到淘宝cnpm

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

2.检查配置

npm config get registry

3.还原npm

npm config set registry https://registry.npmjs.org
这篇关于npm和cnpm命令切换的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!