mac中修改npm的默认安装来源
本文介绍了mac中修改npm的默认安装来源设置
打开终端,切换到根路径
执行下面的命令:
bash# 打开文件
open .npmrc 或者 vim .npmrc
# 输入命令
#更换国内源
npm config set registry https://registry.npmmirror.com/
#换回默认源
npm config set registry https://registry.npmjs.org/
bashnpm config get registry
本文作者:LiuXueChao
本文链接:
版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!