
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@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/graphql --save
# pnpm
pnpm install @quilted/graphql --save
# yarn
yarn add @quilted/graphql
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 a 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 472 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 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.