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

@librpc/ee

v1.0.5

Published

Modern event emitter

Downloads

1,003

Readme

Table of Contents

Features

Install

npm install --save @librpc/ee

or download dev or prod version

Usage


import EventEmitter from '@librpc/ee'

var emitter = new EventEmitter()

function listener (data) {
  console.log(data)
}

emitter.on('event', listener)
emitter.emit('event', { foo: 'bar' }) // -> { foo: 'bar' } in console
emitter.off('event', listener)

API

Emitter

new Emitter()

Create an event emitter

Example

var emitter = new Emitter()

emitter.on(event, listener) ⇒ Emitter

Add listener to event. No context provided, use Function.prototype.bind(), arrow function or closure instead.

Kind: instance method of Emitter Returns: Emitter - Return self

| Param | Type | Description | | --- | --- | --- | | event | string | Event name | | listener | listener | Event listener |

Example

function listener (data) {
 console.log(data)
}

emitter.on('event', listener)

emitter.off(event, listener) ⇒ Emitter

Remove listener from event.

Kind: instance method of Emitter Returns: Emitter - Return self

| Param | Type | Description | | --- | --- | --- | | event | string | Event name | | listener | listener | Event listener |

Example

emitter.off('event', listener)

emitter.emit(event, data) ⇒ Emitter

Trigger an event. Multiple arguments not supported, use destructuring instead.

Kind: instance method of Emitter Returns: Emitter - Return self

| Param | Type | Description | | --- | --- | --- | | event | string | Event name | | data | * | Event data |

Example

emitter.emit('event', { foo: 'bar' })

listener : function

| Param | Type | Description | | --- | --- | --- | | data | * | Any data could be passed to event listener |

Benchmark

> @librpc/[email protected] bench D:\Projects\event-emitter
> node bench/

┌──────────────────────────────┬─────────┬───────────┬─────────┐
│ EMITTER                      │ ON      │ EMIT      │ OFF     │
├──────────────────────────────┼─────────┼───────────┼─────────┤
│ events                       │ 99,258  │ 2,147,706 │ 187,842 │
├──────────────────────────────┼─────────┼───────────┼─────────┤
│ minivents                    │ 39,103  │ 1,737,633 │ 11,219  │
├──────────────────────────────┼─────────┼───────────┼─────────┤
│ mitt                         │ 134,112 │ 1,792,035 │ 231,187 │
├──────────────────────────────┼─────────┼───────────┼─────────┤
│ eventemitter3                │ 31,669  │ 2,188,591 │ 16,539  │
├──────────────────────────────┼─────────┼───────────┼─────────┤
│ ../dist/event-emitter.umd.js │ 142,386 │ 2,231,370 │ 269,298 │
└──────────────────────────────┴─────────┴───────────┴─────────┘

Development

Command | Description --------| ----------- npm run check | Check standard code style by snazzy npm run build | Wrap source code in UMD by rollup npm run bench | Run benchmark npm run test | Run tests by tape and compute code coverage by nyc npm run min | Minify code by UglifyJS npm run docs | Create docs by jsdoc-to-markdown