一、镜像源
查询当前镜像源
npm get registry
设置为淘宝镜像
npm config set registry http://registry.npm.taobao.org/
设置回默认的官方镜像
npm config set registry https://registry.npmjs.org/
设置electron为淘宝镜像
npm config set ELECTRON_MIRROR "https://npm.taobao.org/mirrors/electron/"
查看和删除electron淘宝镜像设置
npm config get ELECTRON_MIRROR
npm config delete ELECTRON_MIRROR
二、代理
查看当前代理
npm config get proxy
npm config get https-proxy
设置代理文章来源:https://www.toymoban.com/news/detail-653839.html
npm config set proxy http://server:port
npm config set https-proxy http://server:port
删除代理文章来源地址https://www.toymoban.com/news/detail-653839.html
npm config set proxy null
npm config set https-proxy null
到了这里,关于npm的镜像源和代理的查看和修改的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!