sparkles
Namespaced global event emitter
Last updated 10 years ago by phated .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ gnpm install sparkles 
SYNC missed versions from official npm registry.

sparkles

NPM version Downloads Travis Build Status AppVeyor Build Status Coveralls Status Gitter chat

Namespaced global event emitter

Usage

Sparkles exports a function that returns a singleton EventEmitter. This EE can be shared across your application, whether or not node loads multiple copies.

var sparkles = require('sparkles')(); // make sure to call the function

sparkles.on('my-event', function(evt){
  console.log('my-event handled', evt);
});

sparkles.emit('my-event', { my: 'event' });

API

sparkles(namespace)

Returns an EventEmitter that is shared amongst the provided namespace. If no namespace is provided, returns a default EventEmitter.

sparkles.exists(namespace);

Checks whether a namespace exists and returns true or false.

Why the name?

This is a "global emitter"; shortened: "glitter" but it was already taken; so we got sparkles instead :smile:

License

MIT

Current Tags

  • 2.0.0                                ...           latest (3 years ago)

5 Versions

  • 2.0.0                                ...           3 years ago
  • 1.0.1                                ...           7 years ago
  • 1.0.0                                ...           9 years ago
  • 0.1.0                                ...           10 years ago
  • 0.0.0                                ...           10 years ago
Downloads
Today 1
This Week 1
This Month 1
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (4)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |