退出Node.js上的第三方应用程序

时间:2019-07-02 16:59:24

标签: javascript node.js linux ubuntu

如何用nodejs结束应用程序。

示例: 我希望我的应用程序关闭Google Chome。

应用程序正在linux xubuntu上运行。

我正在用NODEJS开发应用程序。

tks

1 个答案:

答案 0 :(得分:0)

这不是完全正确的,但应该为您指明正确的方向

// Define Chrome as a child process
var proc = require('child_process').spawn('Google Chrome');

// Then later on
proc.kill();