Socket
Socket
Sign inDemoInstall

destroyable-server

Package Overview
Dependencies
2
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    destroyable-server

A tiny Node.js module to make any server force-closeable


Version published
Weekly downloads
46K
decreased by-7.81%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Destroyable-Server Build Status Available on NPM

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 end all connections.

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.

Keywords

FAQs

Last updated on 12 Feb 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc