我在以下目录中运行一个NodeJs应用程序
第一个应用程序的路径'/ users / user1 / projects / sampleProject',该路径在 3000 端口上运行。
第二个应用程序的路径'/ users / user1 / demoProjects / demo1'将在第一个应用程序触发路由器功能时在 5000 端口上运行。
第二个NodeJs应用程序尚未启动(它将在端口5000上运行)。它需要在运行在端口3000 ie({http://localhost:3000/server/startServer)上的第一个NodeJs应用程序中点击路由器功能时独立运行。我是NodeJs子进程的新手,如果我错了,请纠正我。并建议我正确的方法。谢谢
Start another node application using node.js?
我尝试过如下操作
// First NodeJs application
import { exec } from "child_process";
router.get('/startServer', async (req, res, next) => {
console.log("Initiated request")
let startServerInstance = 'cd "/users/user1/demoProjects/demo1" && npm run dev'; // path for the second NodeJs application
console.log("Server instance path => " + startServerInstance)
try {
// exec from child process, Spawns a shell then executes the command within that shell
let child = exec(startServerInstance, function (err, stdout, stderr) {
if (err) throw err;
else {
console.log("result ")
res.json({
status: 'success'
});
}
});
} catch (error) {
res.json({
status: 'error',
message: error
});
}
});
上面的代码执行命令并触发第二个应用程序在后台运行,但不返回任何内容。错误或成功结果。
答案 0 :(得分:1)
您需要使用stout
和stderror
来检查其他服务器日志。另外,您的代码不正确。如果您在不使用if
的情况下使用{}
,则不会进入else
语句。这就是为什么您在控制台中看不到“结果”文本的原因。
import {
exec
} from "child_process";
router.get('/startServer', async (req, res, next) => {
console.log("Initiated request")
let startServerInstance = 'cd "/users/user1/demoProjects/demo1" && npm run dev'; // path for the second NodeJs application
console.log("Server instance path => " + startServerInstance)
try {
// exec from child process, Spawns a shell then executes the command within that shell
let child = exec(startServerInstance, function(err) {
if (err) throw err;
console.log("Server started");
});
child.stdout.on('data', (data) => {
// this is new server output
console.log(data.toString());
});
child.stderr.on('data', (data) => {
// this is new server error output
console.log(data.toString());
});
res.json({
status: 'success'
});
} catch (error) {
res.json({
status: 'error',
message: error
});
}
});
答案 1 :(得分:1)
仅在进程终止后才调用子进程回调。如果进程继续运行,则不会触发回调。