npm镜像
- 通过config命令
npm config set registry https://registry.npm.taobao.org
npm info underscore (如果上面配置正确这个命令会有字符串response)
- 国内源:
npm config set registry https://registry.npm.taobao.org/
原始源:
npm config set registry https://registry.npmjs.org/
配置后可通过下面方式验证是否成功:
npm config get registry
网友评论