如何用nodejs结束应用程序。
示例: 我希望我的应用程序关闭Google Chome。
应用程序正在linux xubuntu上运行。
我正在用NODEJS开发应用程序。
tks
答案 0 :(得分:0)
这不是完全正确的,但应该为您指明正确的方向
// Define Chrome as a child process
var proc = require('child_process').spawn('Google Chrome');
// Then later on
proc.kill();