npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@xdanangelxoqenpm/delectus-dolor-ea

v1.0.0

Published

# About

Downloads

11

Maintainers

thanhmai019901thanhmai019901

Keywords

-0RxSymbol.toStringTagpropertiesstringifyES2022whatwgformatlookprototyperequirecircularArray.prototype.flatformscollectionmodulesObject.valuesArray.prototype.containscurltsexpressionconfigurabletranspilereadablemetadataoptimizerfullchaideep-copybreakclonetaskpopmotionObject.definePropertykeyencryptionjsonfile systemgenericsutilitiestc39irqtypescriptwordwrapMicrosoftonceuser-streamsprivate dataArray.prototype.includes[[Prototype]]installernegative zeroperformantdotenvexit-codejson-schemareact poseecmascriptgesturesESdom-testing-libraryassertStyleSheetparentfindupweakmaptrimRightwatcherkeysUint8ClampedArraylockfileformmimetypessortedisConcatSpreadablermdirconcatMapfull-widthArrayBuffer#slicejson-schema-validatorECMAScript 30io-tsvaluesnpmcoerciblelistenerslaunchcorsjsxbyteOffsetcodestypesafeSymbolanimationyupttykarmabyteLengthfast-deep-clonesortindicatores-shim APIcolorswhich256matchesbabelloadingspecpackage managerduplexworkerframeworkRFC-6455packagesincludeseveryArray.prototype.filterjavascripthasOwntoobjectcmdexpressstringifierRegExp.prototype.flagspathgdprwalkeventDispatcherUint16ArraymruhookformperformancetostringtagshellrobustwarningpositiveautoprefixerqueueMicrotasklinewrapviewtrimexecutablecallbindharmonyfigletES2023jsdomURLSearchParamsjsstreamaccessorinterruptslanguagetypescopytapstylesequalpropertyStreamhigher-orderpromisesbcryptfindLastauthenticationgetPrototypeOfECMAScript 2020tacitpropstylinglinuxbrowserlistvisualramdareact-testing-libraryawaitserializefastclonereaddefinehashObject.fromEntriesinternalES2018immutabledirectoryfast-deep-copyutilitycolumnssignalssequencerm -rftypeofeslintpluginsymbolArray.prototype.findLastIndexnativetypanionsyntaxvarwidthescapecode pointsbootstrap lesslook-upbusyfunctionscreatefullwidth.envbufferwebsiteString.prototype.matchAllwalkingargvhandlersstreamsWebSocketscss-in-jsextensionreactsigtermupprogressdebugInt16ArrayinspecttoArraytelephonejasmineshimstyled-componentsspawnshrinkwrappreprocessorquerystringbundlerReactiveXFloat32ArrayECMAScript 2023form-validationwatchFiletypeerrormobilescheme-validationbytemacosi18ntestECMAScript 2015lastfantasy-landgradients cssObjectapolloTypeBoxReactiveExtensionsnested cssurltrimEndsymbolsentriesUint32ArrayECMAScript 5cliflatMapreduxsettingsrgbimmerassertsinternal slothasCSSStyleDeclarationmixinscjkoptionfpshamworkspace:*Object.getPrototypeOfnumbercss lesseslintconfigpostcss-pluginstylelengthES2016typedarrays

Readme

@xdanangelxoqenpm/delectus-dolor-ea

About

Provides simple and modern asynchronous event emitter

Installation

$ npm i @xdanangelxoqenpm/delectus-dolor-ea

Usage

Package could be required as ES6 module

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

Or as commonJS module.

const { EventEmitter } = require('@xdanangelxoqenpm/delectus-dolor-ea');

Class: EventEmitter

Event: newListener

The emitter instance will emit its own newListener event during execution of the emitter on() method .

Listeners registered for the newListener event are passed with a name, options and a reference to the listener being added.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter();

emitter.on('newListener', (name, listener, options) => console.log(name, listener, options));

// print: foo [Function (anonymous)] { prioirty: 1 }
emitter.on('foo', data => console.log(data), { prioirty: 1 });

But there is few exceptions: event will not be emitted if the event name is newListener or removeListener.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter();

emitter.on('newListener', (name, listener, options) => console.log(name, listener, options));

// doesn't print anything
emitter.on('newListener', name => console.log(name));

Event: removeListener

The emitter instance will emit its own removeListener event during execution of the emitter off() method .

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter ();
const listener = data => console.log(data);

emitter.on('removeListener', (event, listener) => console.log(event, listener));
emitter.on('foo', listener, { priority: 1 });

// print: foo [Function listener]
emitter.off('foo', listener);

As with newListener event case, event will not be triggered if listener event name was newListener or removeListener.

Event: error

The error event is emitted after the listener throw an error and captureRejections option set to true. To more detail follow to Error Handling section.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter ({ captureRejections: true });

emitter.on('error', error => console.log(error));

emitter.on('foo', () => Promise.reject(new Error('Oops')));

// print: Error: Oops
emitter.emit('foo');

emitter.on(eventName, listener [, options])

The on() method adds the listener function to the listeners collection for the event named eventName. Any given listener could be added only once per event.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter ();

emitter.on('foo', data => console.log(data));

// print: bar
emitter.emit('foo', 'bar');

Returns a reference to the emitter, so that calls can be chained.

Additionally to eventName and listener arguments, method also accept the third one options. It is object with optional parameters as once, priority and signal.

The once option indicate that listener will be executed only once after what it will be removed from the eventName.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter ();

emitter.on('foo', data => console.log(data), { once: true });

// print: bar x1
emitter.emit('foo', 'bar');
emitter.emit('foo', 'bar');

The priority is a integer by default in the range between 0 and 10 that controls the order in which listeners are executed (the higher the number, the earlier a listener is executed). By default equal to 0.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter ();

emitter.on('foo', () => console.log('I am second'));
emitter.on('foo', () => console.log('I am first'), { priority: 1 });

// print: I am first
// print: I am second
emitter.emit('foo');

The signal option accepts an AbortSignal which removes the event listener after the abort event.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter ();
const controller = new AbortController();

emitter.on('foo', data => {
	console.log(data)
	controller.abort()
}, { signal: controller.signal });

// print: foo x1
emitter.emit('foo', 'bar');
emitter.emit('foo', 'bar');

emitter.off(eventName, listener)

The off() method removes the listener function from the listeners collection for the event named eventName.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter ();
const listener = data => console.log(data);

emitter.on('foo', listener);
emitter.off('foo', listener); 

// doesn't print anything
emitter.emit('foo', 'bar');

Returns a reference to the emitter, so that calls can be chained.

emitter.eventNames()

The eventNames() method returns an array of the events with registered listeners. The values in the array are strings or Symbols.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter();

emitter.on('foo', data => console.log(data));

// print: [ "foo" ]
console.log(emitter.eventNames());

As is in the case when an emitter creates a new eventName for a listener whose event does not exist, if the last event listener event is removed from the eventName collection, it will be removed.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter ();
const listener = data => console.log(data);

emitter.on('foo', listener);

// print: [ "foo" ]
console.log(emitter.eventNames());

emitter.off('foo', listener);
// print: []
console.log(emitter.eventNames());

emitter.listeners(eventName)

The listeners() method returns a copy of the collection of listeners for the event named eventName.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter ();

emitter.on('foo', data => console.log(data));

// print: [
//  {
//    listener: [Function (anonymous)],
//    priority: 0
//  }
// ]
console.log(emitter.listeners('foo'));

emitter.rawListeners(eventName)

The rawListeners() method returns a collection containing the raw listeners buckets, sorted by their priority, for the event named eventName.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter ();

emitter.on('foo', data => console.log(data), { priority: 1 });
emitter.on('foo', data => console.log(data), { priority: 2 });

// print: [
//  Bucket(1) [
//    Listener {
//      [Symbol(kListenerCallback)]: [Function (anonymous)],
//      [Symbol(kListenerCollection)]: [Collection]
//    },
//    priority: 2
//  ],
//  Bucket(1) [
//    Listener {
//      [Symbol(kListenerCallback)]: [Function (anonymous)],
//      [Symbol(kListenerCollection)]: [Collection]
//    },
//    priority: 1
//  ]
// ]

console.log(emitter.rawListeners('foo'));

emitter.listenerCount(eventName)

The listenerCount() method returns the number of listeners listening for the event named eventName.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter ();

emitter.on('foo', data => console.log(data));

// print: 1
console.log(emitter.listenerCount('foo'));

emitter.removeAllListeners([eventName])

The removeAllListeners() removes all listeners, or those of the specified eventName.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter ();

emitter.on('foo', data => console.log(data));
emitter.on('bar', data => console.log(data));

emitter.removeAllListeners('foo');
// print: 0
console.log(emitter.listenerCount('foo'));
// print: 1
console.log(emitter.listenerCount('bar'));

emitter.removeAllListeners();
// print: 0
console.log(emitter.listenerCount('bar'));

emitter.emit(event)

The emit() method notify each of registered for the eventName listeners in the order of their priority and awaits for their resolution.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter();

emitter.on('foo', data => console.log(data));

// print: bar
emitter.emit('foo', 'bar');

Method return promise that resolves true if the event had listeners, false otherwise

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter();

// print: false
emitter.emit('foo').then(console.log);

emitter.on('foo', data => {});

// print: true
emitter.emit('foo').then(console.log);

Origins

Each event and its listener are owned by some emitter, but they can be shared between multiple instances. To achieve this behavior enough to provide in the target as the origin option another instance of event emitter, whose events and listeners will be shared with the target.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter();
const emitter_two = new EventEmitter({ origin: emitter });
function listener(data) { console.log(data) }

emitter.on('foo', listener);

// print: [ 'foo' ]
console.log(emitter_two.eventNames());

// print: [ { listener: [Function: listener], priority: 0 } ]
console.log(emitter_two.listeners('foo'));

// print: hello!
emitter.emit('hello!');

Event emitters with origins also can form chains or trees with shared events and listeners that can be reached from any low-level emitter.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter();
const emitter_two = new EventEmitter({ origin: emitter });
const emitter_three = new EventEmitter({ origin: emitter_two });

emitter.on('foo', console.log);
emitter_two.on('foo', console.log);

// print: hello! x2
emitter_three.emit('foo', 'hello!')

Priorities

The emitter constructor accepts a priority option, where can be defined the minimum and/or maximum values for the priority range of the emitter listeners. By default these values are "0" and "10".

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter({ priority: { min: -20 } });

emitter.on('foo', () => console.log('I am second'), { priority: -20 });
emitter.on('foo', () => console.log('I am first'));

// print: I am first
// print: I am second
emitter.emit('foo');

Error Handling

When an error occurs within an the emitter instance, the typical action is for an error is to reject a promise that was returned from the emit() method that caused an exception.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter();
const emitter_two = new EventEmitter({ origin: emitter });

emitter.on('foo', async function() {
	await new Promise(resolve => setImmediate(resolve));
	throw new Error('Oops');
});

// print: 'Error message is "Oops".'
emitter.emit('foo').catch(error => console.log(`Error message is "${error.message}".`));

// or with `origin` option

// print: Error message is "Oops".
emitter_two.emit('foo').catch(error => console.log(`Error message is "${error.message}".`));

But the emitter could instead of promise rejection, handle all exceptions by itself. In this case, event listeners errors will be emitted as part of error event. To acquire this behavior the emitter constructor captureRejections option should be set to true.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter({ captureRejections: true });

emitter.on('foo', async function() {
    await new Promise(resolve => setImmediate(resolve));
    throw new Error('Oops');
});

emitter.on('error', error => console.log(`Error message is "${error.message}".`));

// print: 'Error message is "Oops".'
emitter.emit('foo')

However in the case of an emitter with defined origin option, error event will be handled by listeners from the origin and target.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter();
const emitter_two = new EventEmitter({ origin: emitter, captureRejections: true });

emitter.on('error', console.log);
emitter_two.on('foo', async function() {
    await new Promise(resolve => setImmediate(resolve));
    throw new Error('Oops');
});

// print: Error message is "Oops".
emitter_two.emit('foo');

But if error event listener will throw an error, it will not be handled and will reject a promise that was returned from the emit() method that caused an exception.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter({ captureRejections: true });

emitter.on('foo', async function() {
    await new Promise(resolve => setImmediate(resolve));
    throw new Error('Oops');
});

emitter.on('error', function(error) {
    throw error
})

// print: 'Error message is "Oops".'
emitter.emit('foo').catch(error => console.log(`Error message is "${error.message}".`));

Also error event will be emitted if newListener or removeListener listeners will throw an error.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter({ captureRejections: true });

emitter.on('error', error => console.log(`Error message is "${error.message}".`));

emitter.on('newListener', async function() {
    await new Promise(resolve => setImmediate(resolve));
    throw new Error('Oops');
});

// print: 'Error message is "Oops".'
emitter.on('event', () => {})

But if in this case error event listener will throw an error, it will not be handled and will raise the process unhandledRejection event.

import { EventEmitter } from '@xdanangelxoqenpm/delectus-dolor-ea'

const emitter = new EventEmitter({ captureRejections: true });

process.on('unhandledRejection', error => console.log(`Error message is "${error.message}".`));

emitter.on('newListener', async function() {
    await new Promise(resolve => setImmediate(resolve));
    throw new Error('Oops');
});

// print: 'Error message is "Oops".'
emitter.on('error', function(error) {
    throw error
})

License

MIT