indexzero
10/6/2011 - 4:19 AM

An example of bad `uncaughtException` handling in node.js

An example of bad uncaughtException handling in node.js

process.on('uncaughtException', function (err) {
  throw err;
});

process.on('uncaughtException', function (err) {
  //
  // This console.dir is never hit.
  //
  console.dir(err);
  process.exit(1);
})

throw new Error('wtf node?');