Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@luminati-io/node-unlisten

Package Overview
Dependencies
Maintainers
6
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@luminati-io/node-unlisten

Temporarily stop accepting connections on a TCP or HTTP(S) server

  • 1.0.2-lum.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
57
increased by1.79%
Maintainers
6
Weekly downloads
 
Created
Source

unlisten

const unlisten = require('unlisten');

Node.js module: Temporarily stop accepting connections on a TCP or HTTP(S) server.

Introduction

Once you get a net.Server, http.Server or https.Server in Node.js to start listening on a port, they will automatically accept every connection that comes their way. Node.js doesn't let you stop accepting temporarily without tearing down the whole server (which involves closing the listening socket).

Why would you want to stop accepting?

If you're using cluster.SCHED_NONE instead of the default cluster.SCHED_RR as Node.js' scheduling policy, your workers share the listening socket. When a new connection comes, all workers that are currently blocked in epoll_wait wake up and race to accept it; if none is in epoll_wait, the next one to call epoll_wait gets it. This naturally excludes workers that are very busy. Still, other workers can bite more than they can chew, especially given that the way the kernel seems to work, the same worker tends to win the race every time.

So if the workers have some kind of safeguard against overload, such as the toobusy-js module, they can do better than just denying service: using the unlisten module, a worker can temporarily stop participating in the accept race and let other, less busy workers help out.

Usage

To make an instance of net.Server, http.Server or https.Server stop accepting connections:

unlisten.pause(server);

To resume accepting:

unlisten.resume(server);

The calls are idempotent (that means, calling pause or resume the second time in a row on the same server does nothing).

This is only for listening servers! Don't try it on sockets that represent established connections rather than servers, or on servers that haven't started listening or have been closed.

Limitations

  • This module only works (and compiles) on Linux.
  • In Node.js cluster workers, it requires cluster.SCHED_NONE.
  • It fiddles with the libuv internals, and might stop working with future versions of Node.js. PRs to keep it compatible are welcome.
  • The server instance must have already started listening.

Keywords

FAQs

Package last updated on 11 Oct 2020

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc