我想知道是否可以通过单击Windows上的“X”来检测node.js进程何时关闭。如果是,那怎么样。我尝试了process.on("exit");
但是没有用。
答案 0 :(得分:4)
抓住SIGHUP
/*
* Run this code and close the Window before the 10 seconds
*/
var x = setTimeout(function() { console.log('hello world') }, 10000);
process.on('SIGHUP', function() {
console.log('About to exit');
process.exit();
});