Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@quilted/events
Advanced tools
Tiny helpers for working with events in any JavaScript environment
@quilted/events
Tiny helpers for working with events in any JavaScript environment.
# npm
npm install @quilted/events --save
# pnpm
pnpm install @quilted/events --save
# yarn
yarn add @quilted/events
This library provides an EventEmitter
class, which is the main utility you’ll use to work with events. It’s similar to the browser’s EventTarget
interface, but instead of accepting only callbacks to listen for events, it turns events into other JavaScript types.
To get started, you can create a new EventEmitter
instance, passing it a type argument that describes the events that can be triggered, and their allowed data type:
import {EventEmitter} from '@quilted/events';
const events = new EventEmitter<{message: string}>();
Unlike EventTarget
’s single addEventListener()
method, the EventEmitter
class provides two different methods for dealing with events. The on()
method returns an AsyncGenerator
that will yield the data for each matching event:
import {EventEmitter} from '@quilted/events';
const events = new EventEmitter<{message: string}>();
for await (const message of events.on('message')) {
console.log('Message received:', message);
}
The once()
method, on the other hand, returns a Promise
that will resolve with the data for the first matching event:
import {EventEmitter} from '@quilted/events';
const events = new EventEmitter<{message: string}>();
const message = await events.once('message');
console.log('Message received:', message);
Both on()
and once()
accept an AbortSignal
option as their second argument, which allows you to cancel the listener. By default, aborting on()
will cause the async generator to end stop yielding values, and will cause once()
to resolve its promise with undefined
. However, you can also pass an abort
option set to 'reject'
in order to have these method instead reject with AbortError
s:
import {EventEmitter} from '@quilted/events';
const events = new EventEmitter<{message: string}>();
const abortController = new AbortController();
// Abort this listener in 10 seconds
setTimeout(() => {
abortController.abort();
}, 10_000);
try {
const message = await events.once('message', {
signal: abortController.signal,
abort: 'reject',
});
console.log('Message received:', message);
} catch (error) {
console.log('Promise rejected:', error);
}
When working in Node, the browser, and other environments, you may already have an object capable of receiving events, and want to convert those events to promises and async generators, like the EventEmitter
class. You can wrap any object conforming to the EventTarget
or Node.js EventEmitter
interfaces with an EventEmitter
to get this functionality:
import {EventEmitter} from '@quilted/events';
// HTML elements implement `EventTarget`
const button = document.querySelector('button');
const events = new EventEmitter(button);
for await (const event of events.on('click')) {
console.log('Button clicked!', event);
}
You can also use the on()
and once()
functions provided by this library to do one-off event listeners:
import {once} from '@quilted/events';
const button = document.querySelector('button');
const event = await once(button, 'click');
console.log('Button clicked!', event);
FAQs
Tiny helpers for working with events in any JavaScript environment
The npm package @quilted/events receives a total of 129 weekly downloads. As such, @quilted/events popularity was classified as not popular.
We found that @quilted/events demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.