Socket
Socket
Sign inDemoInstall

@twilio/replay-event-emitter

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@twilio/replay-event-emitter

An extension to Node's EventEmitter that supports event replay.


Version published
Weekly downloads
68K
decreased by-3.44%
Maintainers
1
Weekly downloads
 
Created
Source

EventReplayEmitter

An extension to Node's EventEmitter that supports event replay. In other words, if a listener is added using either addListenerWithReplay or onWithReplay, then it will instantly trigger the listener with previous event data (if no data was previously emitted, then the listener will not get triggered on registration).

Usage Examples

In order to get event replay on listener registration, simply utilize the addListenerWithReplay method like so:

import { ReplayEventEmitter } from "replay-event-emitter";

// Instantiate the event emitter
const eventEmitter = new ReplayEventEmitter();

// Emit an event before adding a listener
eventEmitter.emit("exampleEvent", "someData");

// Subscribe using addListenerWithReplay
eventEmitter.addListenerWithReplay("exampleEvent", (data) => {
  // This handler will get triggered despite the data emission happening BEFORE
  // the event registration.
  console.log(data);
});

You could also use the shorthand method onWithRepeat, like so:

eventEmitter.onWithReplay("exampleEvent", (data) => {
  console.log(data);
});

All the original functionality of the EventEmitter is still intact:

import { ReplayEventEmitter } from "replay-event-emitter";

const eventEmitter = new ReplayEventEmitter();

eventEmitter.emit("exampleEvent", "someData");

eventEmitter.addListener("exampleEvent", (data) => {
  // This handler will NOT get triggered, as this is not a replay method and the
  // data emission happened BEFORE the event registration.
  console.log(data);
});

FAQs

Package last updated on 18 May 2023

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