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

coolbus

v0.0.1

Published

A cross-script, shared event bus.

Downloads

5

Readme

CoolBus Build Status

A cross-module, shared event bus.

This module is intended to give developers a way to share events between various modules. If you've broken your app into multiple modules, but you want to be able to share events between those moduels without having to pass an event object between each module at require time, CoolBus is for you!

This module's code sits on top of EventEmitter2

Install

npm install coolbus

Use

To use CoolBus, you just have to var coolbus = require('coolbus') at the top of your module and you'll be able to share events across each module requiring the same instance of the script. No need to pass objects back and forth at require time, the module handles all that for you!

Example

Basic usage

var coolbus = require('coolbus');

var busA = coolbus.bus('busA');

busA.on('beep/1', function() {
  console.log('busA beeped a 1!');
});

busA.on('beep/2', function() {
  console.log('busA beeped a 2!');
});

busA.on('beep/*', function() {
  console.log('busA beeped!');
});

busA.emit('beep/1');
busA.emit('beep/2');

Cross-module usage

app.js

var coolbus = require('coolbus'),
  moduleA = require('./moduleA'),
  moduleB = require('./moduleB');

var busA = coolbus.bus('a'),
  busB = coolbus.bus('b');

busB.on('beep/*', function (from) {
  console.log('app.js heard bus "b" emit "beep/*" from ' + from);
});

console.log('app.js is emitting "beep/a" on bus "a".');
busA.emit('beep/a', 'app.js');

moduleA.js

var coolbus = require('coolbus');

var busA = coolbus.bus('a'),
  busB = coolbus.bus('b');

busA.on('beep/a', function (from) {
  console.log('moduleA.js heard bus "a" emit "beep/a" from ' + from + ' and is emitting "beep/b" on bus "b"');
  busB.emit('beep/b', 'moduleA.js')
});

moduleB.js

var coolbus = require('coolbus');

var busA = coolbus.bus('a'),
  busB = coolbus.bus('b');

busB.on('beep/b', function (from) {
  console.log('moduleB.js heard bus "b" emit "beep/b" from ' + from);
});

Methods

  • bus(name[, options]) - This method will return or create the bus named name using options if provided. The returned bus is an instance of EventEmitter2
    • name - Required, string - This is the name of the event bus that you want to use. If it doesn't exist, it is created.
    • options - Optional, object - This an EventEmitter2 configuration object
      • Default options:
        • wildcard - true
        • delimiter - "/"
        • newListener - true
        • maxListeners - 15
  • stop(name) - This method will stop the specified bus and remove it from operation in ALL of the modules interacting with it.
    • name - Required, string - This is the name of the bus you want to stop.
  • stopAll() - This will stop ALL the busses using stop(name) above.
  • list() - Returns an array of bus names.
  • each(callback) - Iterates all busses returned via callback
    • callback - Required, function - Signature is function(bus)

Versions

  • 0.0.1 (2014-11-20) Initial commit