是否可以打印“hello world'两次?
IS_RESTARTING = false;
on_error = function(err){
if (IS_RESTARTING) return;
IS_RESTARTING = true;
console.log('hello world');
}
process.on('uncaughtException', on_error);
[...errors occurring in async processes...]