通过 config 命令配置
通过全局配置指定镜像源:
npm config set registry https://registry.npmmirror.com
在安装模块的时候指定镜像源
# 使用npmmirror镜像源 安装 loaddash 模块
npm install loaddash --registry https://registry.npmmirror.com
通过全局配置指定镜像源:
npm config set registry https://registry.npmmirror.com
# 使用npmmirror镜像源 安装 loaddash 模块
npm install loaddash --registry https://registry.npmmirror.com
评论区