Skip to content

gulpjs/sparkles

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d4afc77 Â· Mar 23, 2024

History

31 Commits
Nov 22, 2021
Mar 23, 2024
May 14, 2018
Nov 22, 2021
May 14, 2018
May 14, 2018
Nov 22, 2021
May 14, 2018
Nov 22, 2021
Mar 23, 2024
Nov 22, 2021
Mar 23, 2024
Feb 1, 2022
Mar 23, 2024
Mar 23, 2024

Repository files navigation

sparkles

NPM version Downloads Build Status Coveralls Status

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.

Note: If you put an event handler in a file in your application, that file must be loaded in via an import somewhere in your application, even if it's not directly being used. Otherwise, it will not be loaded into memory.

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 😄

License

MIT