我有两个独立的节点应用程序。我希望其中一个能够在代码中的某个时刻启动另一个。我该怎么做呢?
答案 0 :(得分:42)
使用child_process.fork()
。它类似于spawn()
,但用于创建V8的全新实例。因此它专门用于运行Node的新实例。如果您只是执行命令,请使用spawn()
或exec()
。
var fork = require('child_process').fork;
var child = fork('./script');
请注意,使用fork()
时,默认情况下,stdio
流与父关联。这意味着所有输出和错误都将显示在父进程中。如果您不希望与父级共享流,则可以在选项中定义stdio
属性:
var child = fork('./script', [], {
stdio: 'pipe'
});
然后,您可以与主进程的流分开处理该进程。
child.stdin.on('data', function(data) {
// output from the child process
});
另请注意,该过程不会自动退出。您必须从生成的Node进程中调用process.exit()
才能退出。
答案 1 :(得分:3)
您可以使用child_process模块,它将允许执行外部进程。
var childProcess = require('child_process'),
ls;
ls = childProcess.exec('ls -l', function (error, stdout, stderr) { if (error) {
console.log(error.stack);
console.log('Error code: '+error.code);
console.log('Signal received: '+error.signal); } console.log('Child Process STDOUT: '+stdout); console.log('Child Process STDERR: '+stderr); });
ls.on('exit', function (code) { console.log('Child process exited with exit code '+code); });
http://docs.nodejitsu.com/articles/child-processes/how-to-spawn-a-child-process