Created
June 25, 2018 02:10
-
-
Save evaporei/6dc33f71a50e7d00ea21afa1ac208fa4 to your computer and use it in GitHub Desktop.
graceful-shutdown/listening-signals.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
process.on('SIGTERM', () => console.log('term')) | |
process.on('SIGINT', () => console.log('int')) | |
process.on('SIGHUP', () => console.log('hup')) | |
setInterval(() => console.log('doing useless work!'), 10000) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment