gpt4 book ai didi

node.js - 设置vue app时出现杂项警告ECONNRESET

转载 作者:行者123 更新时间:2023-12-03 06:44:43 43 4
gpt4 key购买 nike

我正在尝试通过 vue-cli 设置 vue 应用程序。一切顺利,直到我输入

npm install 

安装依赖项。这是https的错误,所以我将其更改为http但后来我得到了这个日志:

npm WARN registry Unexpected warning for http://registry.npmjs.org/: Miscellaneous Warning ECONNRESET: request to http://registry.npmjs.org/debug failed, reason: socket hang up
npm WARN registry Using stale package data from http://registry.npmjs.org/ due to a request error during revalidation.

我也用过

npm config rm proxy
npm config rm https-proxy

仍然有同样的问题。

最佳答案

手动将https改为http

npm config set registry="http://registry.npmjs.org/"
npm config set strict-ssl false

如果您在代理后面,请忽略此

npm config set proxy http://username:password@10.80.81.180:80
npm config set https-proxy http://username:password@10.80.81.180:80

安装vue-cli

npm install -g vue-cli

设置vuejs项目

vue-init webpack-simple vueproject

安装依赖

npm install

现在您的 vuejs 样板项目设置已完成

更新#1

先清空npm缓存再尝试上面的步骤

npm cache clear --force

关于node.js - 设置vue app时出现杂项警告ECONNRESET,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48255264/

43 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com