npm镜像源如何设置

1、没有安装npm,先到node官网下载安装node.js(自带npm)。
2、按win+r,输入cmd,打开dos命令。
3、输入npm get registry:查看当前镜像源为 http://registry.npm taobao.org/
4、输入npm config set registry xxx(镜像源地址)。
内网镜像为例: npm config set registry http://xx.xx.xx.xx:8081/repository/npm-group/

C:\workcode\vue_portal>npm config set registry http://xx.xx.xx.xx:8081/repository/npm-group/

5、 npm镜像源设置完成,已经设为放在内网的镜像。

C:\workcode\vue portal>npm get registry
http://xx.xx.xx.xx:8081/repository/npm-group/
上一篇:Spring Boot 设置允许跨域的两种配置方式


下一篇:When allowCredentials is true, allowedOrigins cannot contain the special value “*“