Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@janbiasi
Last active January 15, 2018 12:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save janbiasi/988106530cda7b83c0bb9b3f4e478a69 to your computer and use it in GitHub Desktop.
Save janbiasi/988106530cda7b83c0bb9b3f4e478a69 to your computer and use it in GitHub Desktop.
Handle node.js process quit by user (Command+Q on MacOS, Control+C on Windows)
['SIGINT', 'SIGTERM'].forEach(sig => {
process.on(sig, () => process.exit());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment