Skip to content

Instantly share code, notes, and snippets.

@indexzero
Created October 6, 2011 04:19
Show Gist options
  • Save indexzero/1266520 to your computer and use it in GitHub Desktop.
Save indexzero/1266520 to your computer and use it in GitHub Desktop.
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?');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment