我遇到了一台应该可以离线运行的机器的问题。
我可以在应用程序运行后拉电缆,但在拔出插头时我收到以下错误:
May 6 23:04:50 myco serve[4121]: (node:4121) UnhandledPromiseRejectionWarning: Error: getaddrinfo EAI_AGAIN registry.npmjs.org:443
May 6 23:04:50 myco serve[4121]: at Object._errnoException (util.js:1022:11)
May 6 23:04:50 myco serve[4121]: at errnoException (dns.js:55:15)
May 6 23:04:50 myco serve[4121]: at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:92:26)
May 6 23:04:50 myco serve[4121]: (node:4121) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
May 6 23:04:50 myco serve[4121]: (node:4121) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
看来dns.js是webpack / node-libs-browser的一部分,但据我可以想象....我在源代码树的任何地方找不到GetAddrInfoReqWrap,或者找不到getaddrinfo物。在故意尝试使用npm时,搜索周围的人会收到类似错误的信息很多,但这不是我正在做的事情。我应该已经在机器上拥有我需要的一切。
答案 0 :(得分:0)
显然这是服务问题。
服务> 6.5.3显然有一个问题,它试图联系注册表。将服务降级到6.5.3解决了这个特殊问题。
记录在https://github.com/zeit/serve/issues/348
中不确定为什么服务需要联系注册表。
答案 1 :(得分:0)
当尝试从与最初开发代码的地方不同的VM服务VueJs应用时,我碰到了这个错误。
文件vue.config.js
读为:
module.exports = {
devServer: {
host: 'tstvm01',
port: 3030,
},
};
在原始计算机上投放时,启动输出为:
App running at:
- Local: http://tstvm01:3030/
- Network: http://tstvm01:3030/
在VM tstvm07
上使用相同的设置使我得到了与OP描述的错误非常相似的错误:
INFO Starting development server...
10% building modules 1/1 modules 0 activeevents.js:183
throw er; // Unhandled 'error' event
^
Error: getaddrinfo EAI_AGAIN
at Object._errnoException (util.js:1022:11)
at errnoException (dns.js:55:15)
at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:92:26)
如果尚不明显,请将vue.config.js
更改为...
module.exports = {
devServer: {
host: 'tstvm07',
port: 3030,
},
};
...解决了问题。