
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@twilio/replay-event-emitter
Advanced tools
An extension to Node's EventEmitter that supports event replay.
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).
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
An extension to Node's EventEmitter that supports event replay.
The npm package @twilio/replay-event-emitter receives a total of 61,077 weekly downloads. As such, @twilio/replay-event-emitter popularity was classified as popular.
We found that @twilio/replay-event-emitter demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.