0.0.1 • Published 12 years ago
context-emitter v0.0.1
context-emitter 
A simple extension of node's
EventEmitter that permits setting the
context of emitted events.
Installation
npm install context-emitterUsage
ContextEmitter = require('context-emitter')
Returns the base class for the emitter.
emitter = new ContextEmitter([ctx])
You can either extend a class with ContextEmitter, or instantiate it
directly. Either way, the first argument is optional and will set the context
to run event handlers from.
emitter.ctx = context
Set the ctx property of the emitter to change emitted functions' contexts.