eventful-ah

0.4.0 • Public • Published

eventful

Event-based javascript.

My personal flavor of a javascript event emitter. It can be used to listen to and emit events for event-based behavior in the browser or in node.js. This readme contains installation instructions and an overview of features.

// initialize an event emitter
var ee = new EventEmitter();
 
// create a callback function
var fooCallback = function() {
  console.log('The foo event was emitted.');
};
 
// register the callback
ee.on('foo', fooCallback);
 
// emit the event
ee.emit('foo'); // #=> "The foo event was emitted."

Detailed API documentation will be coming soon.

Installation

Downloads:

How to use in a browser:

<!-- direct link -->
<script type='text/javascript' src='https://raw.github.com/AlphaHydrae/eventful/master/src/eventful.min.js'></script>

<!-- with downloaded file -->
<script type='text/javascript' src='/assets/js/eventful.min.js'></script>

How to install with npm:

npm install eventful-ah

How to use in node:

// if installed with npm
var EventEmitter = require('eventful-ah');

// if downloaded
var EventEmitter = require('./lib/eventful.js');

Features

Jump to:

All methods can be chained.

ee.on('foo', function() {
  console.log('The foo event was emitted.');
}).on('bar', function() {
  console.log('The bar event was emitted.');
}).emit('foo').emit('bar');

You can remove callbacks with the off method.

var fooCallback = function() {
  console.log('The foo event was emitted.');
};
 
var barCallback = function() {
  console.log('The bar event was emitted.');
};
 
// register both callbacks
ee.on('foo', fooCallback).on('bar', barCallback);
 
// you can remove a specific callback
ee.off('foo', fooCallback);
 
// or you can remove all callbacks for the foo event
ee.off('foo');
 
// nothing happens any more with the foo event
ee.emit('foo');
 
// the bar callback is still registered
ee.emit('bar'); // #=> "The bar event was emitted."
 
// finally, you can also remove all callbacks like this
ee.off();
 
// nothing happens with any event
ee.emit('bar');
 

When emitting events, any additional arguments after the event name are passed to registered callbacks.

ee.on('foo', function(arg) {
  console.log('I was called with ' + arg + '.');
});
 
ee.emit('foo', 'bar'); // #=> "I was called with bar."

The on method can be used to retrieve the list of callbacks registered for a given event.

// register your callbacks
ee.on('fubar', fooCallback).on('fubar', barCallback);
 
// get the list of registered callbacks
var callbacks = ee.on('fubar');
 
// check its contents
console.log(callbacks.length); // #=> 2

You can register callback functions in a namespace, so that only events emitted with the same namespace will call them.

// create an event emitter
var nee = new EventEmitter();
 
// register a callback in a namespace
nee.namespace('foo').on('bar', function() {
  console.log('The bar event was emitted in the foo namespace.');
});
 
// the callback is not called if you emit bar in another namespace or with no namespace
nee.namespace('zoo').emit('bar');
nee.emit('bar');
 
// it is only called if you emit bar within the same namespace
nee.namespace('foo').emit('bar'); // #=> "The bar event was emitted in the foo namespace."

Note that callbacks registered with no namespace will be called when emitting an event in any namespace.

// register a callback on kung in no namespace
nee.on('kung', function() {
  console.log('The kung event was emitted.');
});
 
// the callback with be called by emitting kung in any namespace
nee.namespace('foo').emit('kung'); // #=> "The kung event was emitted."
nee.namespace('bar').emit('kung'); // #=> "The kung event was emitted."

License (MIT)

Copyright (c) 2011 Alpha Hydrae

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Readme

Keywords

none

Package Sidebar

Install

npm i eventful-ah

Weekly Downloads

1

Version

0.4.0

License

none

Last publish

Collaborators

  • alphahydrae