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

eventverse

v2.0.1

Published

Eventverse is a highly performant and easy to understand event emitter for the JavaScript Universe which includes Node and the browser.

Downloads

12

Readme

NPM version Known Vulnerabilities npm NPM downloads Gitter

Installation

Eventverse can be used as a Node module or as an ES6 module.

To install Eventverse through npm, simply use the following command:

$ npm install --save eventverse

Usage

To use Eventverse in a Node project, simply require it like so:

const Eventverse = require('eventverse');

and to use it in the browser, simply import it like so:

// Webpack
import Eventverse from 'eventverse';

// Browser
import Eventverse from './node_modules/eventverse/eventverse.js';

Initialization

After installing and importing Eventverse a new instance can be initialized like so:

const person = new Eventverse();

There is also an initialization option that can be passed to a new instance of Eventverse which allows you to specify the maximum amount of listeners that can be attached to an event. If no value is specified, then 10 is used by default.

| param | type | description | default | |------------------|--------|------------------------------------------------------------------|---------| | maxListenerCount | number | The maximum amount of listeners that can be attached to an event | 10 |

Properties

maxListenerCount

A get method that returns the max amount of listeners allowed for each individual event.

return numMaxListeners = person.maxListenerCount; // returns 10

API

on

Adds a listener function for the given event. If the event doesn't exist, it will be created.

| param | type | description | default | |---------|----------|--------------------------------------------------------------------------------------------|------------| | event | string | The name of the event to add a listener to | | | fn | Function | The function to call when the event is emitted | | | uses | number | Indicates how many times this listener can be called before being destoryed automatically. | Infinity |

Add a function with no parameters:

const helloWorld = () => console.log('Hello World!');

person.on('hello', helloWorld);

Adding a function with parameters:

const helloOtherPerson = (personName) => console.log(`Hello ${personName}!`);

person.on('hello', helloOtherPerson);

Adding a function that only has 2 uses:

const helloWorld = () => console.log('Hello World!');

person.on('hello', helloWorld, 2);

once

Once is the same as on except that it sets a listener that will only be called once and then removed automatically afterwards.

| param | type | description | default | |---------|----------|------------------------------------------------|------------| | event | string | The name of the event to add a listener to | | | fn | Function | The function to call when the event is emitted | |

Add a function with no parameters.

const bonjourWorld = () => console.log('Bonjour World!');

person.once('hello', bonjourWorld);

listenerCount

Returns the number of listeners for a given event.

| param | type | description | default | |-------|--------|----------------------------------------------------------|---------| | event | string | The name of the event to get the number of listeners for | |

return person.listenerCount('hello'); // returns 3

timesCalled

Returns the number of times a listener has been called.

| param | type | description | default | |-------|--------|---------------------------------------------------------------------|---------| | event | string | The name of the event to get the number of times it has been called | |

return person.timesCalled('hello');

emit

Calls all of the listeners attached to the Eventverse instance with the event name and the supplied arguments.

| param | type | description | default | |---------|--------|------------------------------------------------|---------| | event | string | The name of the event to emit | | | ...args | ...* | The arguments to pass to the event's listeners | |

Emitting the hello event with no arguments:

person.emit('hello');

Emitting the hello event with arguments:

person.emit('hello', 'John', 25, 'United States');

removeListener

Removes a listener function from the given event.

| param | type | description | default | |----------|----------|-------------------------------------------------|---------| | event | string | The name of the event to remove a listener from | | | listener | Function | The listener function to remove from the event | |

const helloWorld = () => console.log('Hello World!');

person.removeListener('hello', helloWorld);

removeAllListeners

Removes all listeners from a given event.

| param | type | description | default | |----------|----------|---------------------------------------------------|---------| | event | string | The name of the event to remove all listener from | |

person.removeAllListeners('hello');

Tests

To run all of the available tests, use:

$ npm run test

License

MIT