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

listen

v1.0.1

Published

Wait for the results of multiple callbacks

Downloads

9,135

Readme

listen.js

Build Status SemVer License

A tiny library to wait for the results of multiple callbacks. For node and the browser.

Install

This will install the listen module in your current project and add it to the dependencies:

npm install listen --save

Usage

var listen = require('listen');

var listener = listen();

var callbackA = listener();
var callbackB = listener();

/*
 * Do async stuff with callbacks.
 *
 * Callbacks follow the Node.js convention. They expect an error or null as
 * the first argument and an optional value as the second:
 *
 * Fail: callback(new Error('ouch!'));
 * Return: callback(null, 'some return value');
 */
listener.then(function (err, values) {
  /*
   * err    - 1) null if no callback received an error
   *          2) the error of the callback that received an error
   *          3) an error with name ErrorList wrapping multiple errors
   *
   * values - The non-undefined return values from all callbacks in order of
   *          callback creation, also exposing names callbacks (see API)
   */
});

API

Start with var listen = require('listen'), then use the listen function to create listeners. Use the listeners to create callbacks.

  • listen([values]): Creates and returns a new listener function. If values are given, it must be an array with initial values.
  • listener([name][, func][, timeout]): Creates a new callback associated with the listener. Throws if called after then. All arguments are optional and can be combined.
    • name exposes the return value of the callback on the values object under that name.
    • func gets invoked with (err, value) when the callback is invoked.
    • timeout calls the callback with a TimeoutError after the timeout.
  • listener.then(func): Invokes the given function once all callbacks where invoked. If none of the callbacks had errors, the first argument is null, otherwise it's an Error. The second argument is the values array in order of callback creation. Can only be called once.
  • listener.push(value): Pushes a value to the internal values array. Throws if called after then.
  • listener.err(error): Adds an error to the internal error list. Throws if called after then.

Compatibility

The listen has 100% coverage and runs in these environments:

  • Node 0.10, 0.12, 4.3 & 6.3
  • IE 9, 10, 11
  • Firefox
  • Chore
  • PhantomJS

License

MIT