MCPcopy Index your code
hub / github.com/primus/eventemitter3

github.com/primus/eventemitter3 @5.0.4 sqlite

repository ↗ · DeepWiki ↗ · release 5.0.4 ↗
25 symbols 36 edges 16 files 5 documented · 20%
README

EventEmitter3

Version npmCICoverage Status

EventEmitter3 is a high performance EventEmitter. It has been micro-optimized for various of code paths making this, one of, if not the fastest EventEmitter available for Node.js and browsers. The module is API compatible with the EventEmitter that ships by default with Node.js but there are some slight differences:

  • Domain support has been removed.
  • We do not throw an error when you emit an error event and nobody is listening.
  • The newListener and removeListener events have been removed as they are useful only in some uncommon use-cases.
  • The setMaxListeners, getMaxListeners, prependListener and prependOnceListener methods are not available.
  • Support for custom context for events so there is no need to use fn.bind.
  • The removeListener method removes all matching listeners, not only the first.

It's a drop in replacement for existing EventEmitters, but just faster. Free performance, who wouldn't want that? The EventEmitter is written in EcmaScript 3 so it will work in the oldest browsers and node versions that you need to support.

Installation

$ npm install --save eventemitter3

CDN

Recommended CDN:

https://unpkg.com/eventemitter3@latest/dist/eventemitter3.umd.min.js

Usage

After installation the only thing you need to do is require the module:

var EventEmitter = require('eventemitter3');

And you're ready to create your own EventEmitter instances. For the API documentation, please follow the official Node.js documentation:

http://nodejs.org/api/events.html

Contextual emits

We've upgraded the API of the EventEmitter.on, EventEmitter.once and EventEmitter.removeListener to accept an extra argument which is the context or this value that should be set for the emitted events. This means you no longer have the overhead of an event that required fn.bind in order to get a custom this value.

var EE = new EventEmitter()
  , context = { foo: 'bar' };

function emitted() {
  console.log(this === context); // true
}

EE.once('event-name', emitted, context);
EE.on('another-event', emitted, context);
EE.removeListener('another-event', emitted, context);

Tests and benchmarks

To run tests run npm test. To run the benchmarks run npm run benchmark.

Tests and benchmarks are not included in the npm package. If you want to play with them you have to clone the GitHub repository. Note that you will have to run an additional npm i in the benchmarks folder before npm run benchmark.

License

MIT

Extension points exported contracts — how you extend this code

ListenerFn (Interface)
(no doc)
index.d.ts
EventEmitterStatic (Interface)
(no doc)
index.d.ts

Core symbols most depended-on inside this repo

EE
called by 8
index.js
clearEvent
called by 4
index.js
addListener
called by 2
index.js
Events
called by 0
index.js
EventEmitter
called by 0
index.js
Beast
called by 0
test/test.js
bar
called by 0
test/test.js
writer
called by 0
test/test.js

Shape

Function 21
Class 2
Interface 2

Languages

TypeScript100%

Modules by API surface

test/test.js6 symbols
index.js5 symbols
index.d.ts4 symbols
benchmarks/run/emit-multiple-listeners.js3 symbols
benchmarks/run/remove-emit.js1 symbols
benchmarks/run/once.js1 symbols
benchmarks/run/listeners.js1 symbols
benchmarks/run/hundreds.js1 symbols
benchmarks/run/emit.js1 symbols
benchmarks/run/context.js1 symbols
benchmarks/run/add-remove.js1 symbols

Dependencies from manifests, versioned

@rollup/plugin-commonjs29.0.0 · 1×
@rollup/plugin-terser0.4.0 · 1×
assume2.2.0 · 1×
benchmark2.1.x · 1×
c810.1.3 · 1×
contralatest · 1×
driplatest · 1×
event-emitterlatest · 1×
eventemitter2latest · 1×
eventemitter30.1.6 · 1×
fastemitterlatest · 1×
mocha11.7.5 · 1×

For agents

$ claude mcp add eventemitter3 \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact