使用SIGINT退出node.js命令行应用程序

时间:2016-05-15 04:38:41

标签: node.js sigint

这一切都正确吗?

var sigintCount = 0;

process.on('SIGINT', () => {
    console.log('Got your SIGINT => Press Control-C *twice* to exit.');
    sigintCount++;
    if(sigintCount > 1){
        process.exit();   //what is an appropriate exit code?
    }
});

我应该使用什么退出代码?

0 个答案:

没有答案