我想在单独的控制台窗口中启动nodejs子进程,而不是监听其数据事件。
使用分离选项,孩子假设有自己的控制台窗口,但它没有发生。
我在main.js中的代码
const { spawn} = require("child_process");
var child = spawn("node", ["./count.js"], {
detached: true,
stdio: 'ignore'
});
在count.js文件中,我有
console.log(`running in child process with PID ${process.pid})