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

ee-first

Package Overview
Dependencies
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ee-first

return the first event in a set of ee/event pairs

  • 1.0.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
31M
decreased by-9.89%
Maintainers
2
Weekly downloads
 
Created

What is ee-first?

The ee-first package is a utility for Node.js that allows you to wait for multiple EventEmitter or Stream instances to emit an event or error and then execute a callback. It is particularly useful when you need to listen for an event from multiple sources and want to take action only after the first one occurs.

What are ee-first's main functionalities?

Listening for the first event or error from multiple emitters

This feature allows you to pass an array of arrays, where each sub-array contains an EventEmitter instance followed by one or more event names. The callback function is then executed when the first event from any of the listed emitters is emitted.

const first = require('ee-first');

const stream1 = getSomeReadableStream();
const stream2 = getAnotherReadableStream();

const thunk = first([
  [stream1, 'end', 'error'],
  [stream2, 'end', 'error']
], function (err, ee, event, args) {
  // This function will be called when one of the streams emits 'end' or 'error'
  // `ee` is the event emitter that fired
  // `event` is the string name of the event that fired
  // `args` is an array of the arguments that were passed to the event
});

Other packages similar to ee-first

FAQs

Package last updated on 11 Jun 2014

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