.. | ||
test | ||
.npmignore | ||
.travis.yml | ||
.zuul.yml | ||
index.js | ||
LICENSE | ||
package.json | ||
README.md |
re-emitter
Re emit events from another emitter
Works in node and the browser with browserify.
install
npm install re-emitter
usage
var reemit = require('re-emitter')
var emitter = new EventEmitter()
var other = new EventEmitter()
reemit(emitter, other, ['foo', 'bar'])
other.on('foo', function () {
// foo will fire on other emitter!
})
emitter.emit('foo')
other.on('baz', function () {
// baz will not fire on other emitter
})
emitter.emit('baz')
canceling re-emitting
reemit
returns a function
, which when called, cancels all re-emitting by removing the
event listeners which it added.
contributors
- Raynos
- Feross
license
MIT. Copyright (c) Raynos.