Skip to content

Instantly share code, notes, and snippets.

@h3ct0rjs
Created November 8, 2024 23:26
Show Gist options
  • Save h3ct0rjs/b97ac625faf462a19ba80e08054b4ed1 to your computer and use it in GitHub Desktop.
Save h3ct0rjs/b97ac625faf462a19ba80e08054b4ed1 to your computer and use it in GitHub Desktop.
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