当前位置 : 主页 > 手机开发 > cordova >

cordova – 错误:在新创建的应用程序的离子服务上读取ECONNRESET

来源:互联网 收集:自由互联 发布时间:2021-06-10
我刚刚创建了一个离子3应用程序.当我执行离子服务时,它运行成功但是当我在项目中的任何文件上更改某些内容时,如我更改了文本“欢迎使用Ionic”,则服务中断并抛出以下错误. events
我刚刚创建了一个离子3应用程序.当我执行离子服务时,它运行成功但是当我在项目中的任何文件上更改某些内容时,如我更改了文本“欢迎使用Ionic”,则服务中断并抛出以下错误.

events.js:160
      throw er; // Unhandled 'error' event
      ^

Error: read ECONNRESET
    at exports._errnoException (util.js:1026:11)
    at TCP.onread (net.js:569:26)

我的离子细节是

cli packages: (C:\Users\Imdad Turi\AppData\Roaming\npm\node_modules)

@ionic/cli-utils  : 1.18.0
ionic (Ionic CLI) : 3.18.0

global packages:

cordova (Cordova CLI) : 7.0.1

local packages:

@ionic/app-scripts : 3.1.5
Cordova Platforms  : none
Ionic Framework    : ionic-angular 3.9.2

System:

Android SDK Tools : 25.2.3
Node              : v6.9.1
npm               : 4.6.1
OS                : Windows 8.1

Environment Variables:

ANDROID_HOME : C:\Users\Public

Misc:

backend : pro

enter image description here

有人吗?

此错误是由使用ws v3.3.3作为依赖项的最新离子应用程序脚本包引起的.

对我有用的解决方案:
删除./node_modules/ws文件夹并运行

npm install ws@3.3.2

如果这不起作用,请尝试将ionic / app-scripts升级到3.1.6版.

https://github.com/ionic-team/ionic-app-scripts/issues/1345

网友评论