Created
November 8, 2024 23:26
-
-
Save h3ct0rjs/b97ac625faf462a19ba80e08054b4ed1 to your computer and use it in GitHub Desktop.
This file contains 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
import { Server } from 'http'; | |
const server: Server = /* create your server here */; | |
function gracefulShutdown() { | |
console.log('Shutting down gracefully...'); | |
server.close(() => { | |
console.log('Server closed.'); | |
// Close any other connections or resources here | |
process.exit(0); | |
}); | |
// Force close the server after 5 seconds | |
setTimeout(() => { | |
console.error('Could not close connections in time, forcefully shutting down'); | |
process.exit(1); | |
}, 5000); | |
} | |
process.on('SIGTERM', gracefulShutdown); | |
process.on('SIGINT', gracefulShutdown); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment