npm 切換到淘寶源
地址
默認的npm下載地址:http://www.npmjs.org/
淘寶npm鏡像的地址:https://npm.taobao.org/
臨時使用淘寶源
npm --registry https://registry.npm.taobao.org install node-red-contrib-composer@latest
全局配置切換到淘寶源
npm config set registry https://registry.npm.taobao.org
全局配置切換到官方源
npm config set registry http://www.npmjs.org
檢測是否切換到了淘寶源
npm info underscore
原文鏈接:https://blog.csdn.net/luohongtuCSDN/article/details/88016046