Nodeclise,Enide不会在调试模式

时间:2016-07-04 15:33:10

标签: javascript node.js eclipse nodeclipse enide

我正在使用Eclipse Enide来构建nodejs应用程序。我能够正常运行并且Web服务正在运行。但是在调试时我选择Debug As>节点应用。 我看到没有错误,控制台显示调试器正在端口5858和5859(它是一个集群)上运行。但是,当连接被拒绝时,相同的Web服务端点会给出错误。

在调试时,我发现永远不会执行集群代码,并且永远不会中断。

const throng = require('throng');
var http_servers = [];

throng({
  workers: process.env.WEB_CONCURRENCY || 1,
  lifetime: Infinity
},mainServerCode);

function mainServerCode() {
  // require('newrelic');
  var express = require('express');  // this code is never hit
  ....

可能是什么原因以及在哪里检查它。 感谢

0 个答案:

没有答案