Skip to content

Instantly share code, notes, and snippets.

@evanlucas
Created October 23, 2015 20:12
Show Gist options
  • Save evanlucas/1240d452073f04b616bb to your computer and use it in GitHub Desktop.
Save evanlucas/1240d452073f04b616bb to your computer and use it in GitHub Desktop.
noexit.js
process.on('uncaughtException', function(err) {
throw err
})
process.on('exit', function() {
console.log('exit')
})
throw new Error('fdsaf')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment