node.js:如何在前台生成分离的 child 并退出

node.js: How to spawn detached child in foreground and exit

根据 the docs for child_process.spawn 我希望能够 运行 在前台运行 child 进程并允许节点进程本身像这样退出:

handoff-exec.js:

'use strict';

var spawn = require('child_process').spawn;

// this console.log before the spawn seems to cause
// the child to exit immediately, but putting it
// afterwards seems to not affect it.
//console.log('hello');

var child = spawn(
  'ping'
, [ '-c', '3', 'google.com' ]
, { detached: true, stdio: 'inherit' }
);

child.unref();

没有看到 ping 命令的输出,它直接退出,没有任何消息或错误。

node handoff-exec.js
hello
echo $?
0

所以...是否有可能在 node.js 中(或根本)到 运行 一个 child 在前景中作为 parent 退出?

有缺陷的节点版本

我发现删除 console.log('hello'); 允许 child 到 运行,但是,它仍然没有将前台标准输入控制传递给 child。这显然不是故意的,因此我当时使用的节点版本一定有问题......

https://github.com/nodejs/node/issues/5549

你不见了

// Listen for any response:
child.stdout.on('data', function (data) {
    console.log(data.toString());
});

// Listen for any errors:
child.stderr.on('data', function (data) {
    console.log(data.toString());
}); 

而且您不需要 child.unref();

解决方案

问题中的代码实际上是正确的。当时节点中存在一个合法的错误。

'use strict';

var spawn = require('child_process').spawn;

console.log("Node says hello. Let's see what ping has to say...");

var child = spawn(
  'ping'
, [ '-c', '3', 'google.com' ]
, { detached: true, stdio: 'inherit' }
);

child.unref();

上面的代码片段 运行 实际上与 shell:

的背景相同
ping -c 3 google.com &