Skip to content

Instantly share code, notes, and snippets.

@bhrott
Created October 9, 2017 02:32
Show Gist options
  • Save bhrott/2e7f2bec6ac07eabdfbbaa88cd9520e2 to your computer and use it in GitHub Desktop.
Save bhrott/2e7f2bec6ac07eabdfbbaa88cd9520e2 to your computer and use it in GitHub Desktop.
NodeJS: handle uncaught errors
// add this code before all:
process.on('uncaughtException', function(err) {
console.error(err.stack);
console.log('UNCAUGHT_EXCEPTION: ' + err);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment