Skip to content

Instantly share code, notes, and snippets.

View Sv443's full-sized avatar
πŸ³οΈβ€πŸŒˆ

Sven Fehler Sv443

πŸ³οΈβ€πŸŒˆ
View GitHub Profile
@Sv443
Sv443 / nodejs_soft_shutdown.js
Created November 21, 2018 10:11
NodeJS soft shutdown
// not compatible with ES5, only ES6 and up
process.on('SIGINT', ()=>{
try {
// end your processes here, for example
// http_connection.close();
// or
// mysql_connection.end();