
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
destroyable-server
Advanced tools
Part of HTTP Toolkit: powerful tools for building, testing & debugging HTTP(S)
A tiny Node.js module to make any server force-closeable.
Without this module, when you call server.close()
it stops listening for new connections, but it doesn't close existing connections, which can stop your process from exiting or cause problems with starting new servers.
With this module, you can call server.destroy()
to forcibly shut down all existing sockets in addition to closing the server, to immediately & completely (but cleanly) end all connections. Unlike server.closeIdleConnections()
and similar, this is available on all net servers (not just HTTP) closes all connections with no possibility of race conditions as new connections appear, and provides a promise you can wait on to ensure all connection closure has fully completed before your code continues.
This works for HTTP, TLS, bare sockets, whatever. Anything that extends net.Server
or follows its patterns should work correctly.
Use it like so:
const net = require('net');
const { makeDestroyable } = require('destroyable-server');
// Create a server somewhere:
let server = net.Server((socket) => { /* ... */ };
// Make it destroyable:
server = makeDestroyable(server);
// When you're done with it, destroy it:
server.destroy();
Calling makeDestroyable
mutates the passed server slightly, to track all active connections, and add a destroy()
method which ends them.
Calling destroy()
ends the connections and the server, and returns a promise, which resolves once that is complete.
FAQs
A tiny Node.js module to make any server force-closeable
The npm package destroyable-server receives a total of 93,911 weekly downloads. As such, destroyable-server popularity was classified as popular.
We found that destroyable-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.