0

除了检查process.execArgv和操作字符串之外,是否有更简单的方法来确定 Node 进程是否正在侦听调试连接,如果是,在哪种模式下以及在哪个端口上?process在API 页面上看不到任何内容。

4

1 回答 1

2

process有一个debugPort属性:

if (typeof v8debug !== 'undefined') {
    console.log('In debug mode and listening on port: ' + process.debugPort);
}
于 2013-10-13T09:18:38.237 回答