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

eventplus

v1.2.0

Published

Events (EventEmitter-style) plus async handle/consume

Downloads

3

Readme

Events Plus

This module defines a class implementing Node's events.EventEmitter, but with extra methods: .handle() and .cascade().

This allows handlers to either consume the event or pass it on (possibly asynchronously):

var EventPlus = require('eventplus');
var emitter = new EventPlus();

emitter.handle('myevent', function (foo, bar, next) {
    if (foo === 'foo') {
        // handle it
    } else {
        next();
    }
});
emitter.handle('myevent', function (foo, bar, next) {
    // Async handler
    someAsyncFunction(bar, function (error, result) {
        if (error) return next(error);
        // handle it
    });
});
emitter.on('myevent', function (foo, bar) {
    // Only called if both handlers fail
    console.log('Unhandled myevent:', foo, bar);
});

emitter.emit('myevent', 'foo', 'bar');

This module does not depend on Node's EventEmitter, but it implements the same API.

Methods

This class implements all the methods of Node's events.EventEmitter, plus the following:

.handle(event, handler)

Events are a broadcast system - when .emit() is called, all listeners get notified.

With .handle(), you have the option to consume the event such that no other handlers or listeners are notified. This is done asynchronously, by appending an additional argument (next()) to the event arguments for handlers.

myObj.handle('message', function (arg1, next) {
    // handle it or call next()
});

myObj.emit('message', 'foo');

If an error is supplied (next(new Error(...))), then the remaining handlers are skipped, but listeners are still notified.

If the supplied next() is called more than once, an error is thrown.

Handlers are always called before listeners. Handlers are called in the order they are registered.

.handlers()

Same as .listeners(), but for handlers.

.off(?event, ?fn)

The .off() method can also be used to remove a function as either a listener or a handler. If fn is not supplied, all handlers/listeners for that event are removed. If event is not supplied then all handlers/listeners for all events are removed.

For listeners, this makes it equivalent to either .removeListener() or .removeAllListeners(), depending on arguments used.

Much like .removeListener(), if a function is present in both capacities, or is present multiple times, it will only be removed once and it is undefined which entries will be removed first.

.cascade(event, [args, ...], callback)

This is similar to .emit(), but with a callback as the final argument:

emitter.cascade('my-event', {...}, function (error, obj) {
});

Similar to .emit(), if any call to next() (see .handle()) provides an error object, then the remainder of the handlers are skipped.

Extra events

Similar to the newListener and removeListener events (fired before a listener is added or after it's removed, respectively), two new events are introduced:

newHandler

Called before a new handler is added, with two arguments:

  • event - event name (string)
  • handler - handler function to be added

removeHandler

Called after a handler is removed, with two arguments:

  • event - event name (string)
  • handler - handler function that was removed

Inheriting

Nothing lives in the prototype, so you can include the interface just by calling the constructor. You can pass in the object to enhance as the first argument - otherwise it uses this:

function MyClass() {
    EventPlus(this); // or: EventPlus.call(this) if it makes you happier
    // init
}
MyClass.prototype = {...} // No need to inherit prototype

Minimal version

The version in basic.js contains only the basic methods:

  • .on()
  • .handle()
  • .off()
  • .emit()
  • .cascade()

The minified version basic.min.js is quite small (less than 850 bytes / 500 bytes gzipped) so that you can easily include it in your own project.

License

This package is released as CC-0 - you can re-use any part of it in any way without restriction (including re-licensing under different terms).