Socket
Socket
Sign inDemoInstall

event-loop-spinner

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

event-loop-spinner

Tiny helper to prevent blocking Node.js event loop


Version published
Weekly downloads
82K
decreased by-20.5%
Maintainers
1
Weekly downloads
 
Created
Source

event-loop-spinner

Tiny helper to prevent blocking Node.js event loop.

Example

import { eventLoopSpinner } from 'event-loop-spinner';
async function cpuIntensiveOperationHandler(hugeArray) {
  for (const item of hugeArray) {
    // ...
    if (eventLoopSpinner.isStarving()) {
      await eventLoopSpinner.spin();
    }
  }
}

Reading

Node.js: How even quick async functions can block the Event-Loop, starve I/O

How does this help?

Node can only run one bit of JS at a time. While it is running this bit of JS, it does nothing else. It doesn't fire timers. It doesn't accept TCP connections from clients.

In fact, Node doesn't even do these things when it finishes running one bit of JS. It prefers to immediately run the next bit of JS. It does this for "a while".

This gives you two amazingly powerful ways to shoot yourself in the foot; it's great! Just like C++.

That is, if some node process either:

  • contains some JS code which runs for "too long", or
  • handles too many concurrent work items, resulting in lots of JS to run,

..then it won't handle network requests, or let anyone else do any JS. This can result in the application appearing unresponsive for seconds or minutes. (Yes, we really see minutes.)

event-loop-spinner masks this problem. The spin() method allows Node to stop running this JS function, and its friends, and do some other JS, or do some IO. This significantly shortens the time before more networking is done (i.e. a response is sent to a client), and/or other people's JS is run, improving responsiveness.

FAQs

Package last updated on 19 Jun 2024

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc