📜  ctrl c 上的节点 js - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:55.937000             🧑  作者: Mango

代码示例1
process.on('SIGINT', function() {
    console.log("Caught interrupt signal");

    if (i_should_exit)
        process.exit();
});