Skip to content

Instantly share code, notes, and snippets.

@zlatkov
Created January 5, 2021 11:55
Show Gist options
  • Save zlatkov/35f437a2835f570f65ff5c0d8ecafd24 to your computer and use it in GitHub Desktop.
Save zlatkov/35f437a2835f570f65ff5c0d8ecafd24 to your computer and use it in GitHub Desktop.
process
.on('unhandledRejection', (reason, promise) => {
// Handle failed Promise
})
.on('uncaughtException', err => {
// Handle failed Error
process.exit(1);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment