首页 > 其他分享 >npm install提示request to https://registry.npmjs.org/vue-cli failed, reason: connect ETIMEDOUT 104.16.

npm install提示request to https://registry.npmjs.org/vue-cli failed, reason: connect ETIMEDOUT 104.16.

时间:2022-11-16 11:46:48浏览次数:47  
标签:npm vue network ERR connect registry install ETIMEDOUT

错误如下

npm ERR! code ETIMEDOUT
npm ERR! syscall connect
npm ERR! errno ETIMEDOUT
npm ERR! network request to https://registry.npmjs.org/vue-cli failed, reason: connect ETIMEDOUT 104.16.19.35:443
npm ERR! network This is a problem related to network connectivity.
npm ERR! network In most cases you are behind a proxy or have bad network settings.
npm ERR! network
npm ERR! network If you are behind a proxy, please make sure that the
npm ERR! network 'proxy' config is set properly.  See: 'npm help config'

npm ERR! A complete log of this run can be found in:

我印象中是没有使用代理的,网上查询的清楚缓存不管用,然后换代理

npm config set registry https://registry.npm.taobao.org

原先的代理已经不管用了,不清楚为什么网上还是在推荐

标签:npm,vue,network,ERR,connect,registry,install,ETIMEDOUT
From: https://www.cnblogs.com/zdzdbk/p/16895319.html

相关文章

  • vuex中的mapMutations和mapActions
    <template><divclass="count"><h2>当前求和为:{{sum}}</h2><h3>当前求和放大十倍为为:{{bigSum}}</h3><h3>我在:{{address}}学习:{{subject}}<......
  • 聊聊Vuex原理
    背景Vuex是一个专为Vue.js应用程序开发的状态管理模式。Vuex是专门为Vue.js设计的状态管理库,以利用Vue.js的细粒度数据响应机制来进行高效的状态更新。如果你已......
  • vue源码分析-插槽原理
    Vue组件的另一个重要概念是插槽,它允许你以一种不同于严格的父子关系的方式组合组件。插槽为你提供了一个将内容放置到新位置或使组件更通用的出口。这一节将围绕官网对插......
  • Vue的data,components,methods,computed,mounted,activated,deactivated,beforeCreate
    1、dataVue会递归将data的属性转换为getter/setter,从而让data的属性能够响应数据变化。对象必须是纯粹的对象(含有零个或多个的key/value对)data(){ return......
  • Vue push() pop() shift().....
    push()方法可向数组的末尾添加一个或多个元素,并返回新的长度。eg:数组中添加新元素newVue({data:{arr:['苹果','香蕉','橙子']......
  • vue跨域2.x,3.x跨域,nginx跨域,nginx+域名+ssl证书配置
    vue跨域2.x文件位置config---》index.js---》大约13行---》跨域内容proxyTable:{'/api':{target:'http://192.168.0.125:8000/info',//跨域地址changeOrigin:t......
  • Vue2 到 Vue3,重温这 5 个常用的 API
    距离Vue3发布已经过去一年多时间了,从Vue2到Vue3是一个不小的升级,包括周边生态等。虽然目前大多数开发者们在使用的仍旧以Vue2为准,但Vue3显然是Vue开发者们未来必须面对的,......
  • vuex中的getters
    当state中的数据需要经过加工后在使用//该文件用于创建vuex中的store//引入vueximportVuefrom'vue'importVuexfrom'vuex'//使用插件Vue.use(Vuex);//猪备ac......
  • new Vue的时候到底做了什么
    Vue加载流程1.初始化的第一阶段是Vue实例也就是vm对象创建前后:首先Vue进行生命周期,事件初始化发生在beforeCreate生命周期函数前,然后进行数据监测和数据代理的初始化,也就......
  • 最近面试被问到的vue题
    v-for为什么要加key如果不使用key,Vue会使用一种最大限度减少动态元素并且尽可能的尝试就地修改/复用相同类型元素的算法。key是为Vue中vnode的唯一标记,通过这个......