通过pid node js获取单独的进程

Get seperate process by pid nodejs

有没有办法通过 node.js 中的进程 ID 获取进程?您在节点中有默认的 process 对象,类似于该对象,但我可以获得系统上的现有进程。类似于:var otherProcess = getProcessById(12345)

检查 find-process 图书馆也许对你有帮助

你可以通过pid找到进程:

const find = require('find-process');

find('pid', 12345)
  .then(function (list) {
    console.log(list);
  }, function (err) {
    console.log(err.stack || err);
  })

编辑:

对于 process 之间的通信,您可以使用 ipc(进程间通信) 检查 node-ipc npm 包