fwd
v0.2.2
Published
Forward one (emitter|stream)'s events to another
Downloads
41,802
Readme
fwd
Forward one (emitter|stream)
's events to another -> connect parts of your application whose interface you have no control over.
Installation
$ component install juliangruber/fwd
$ npm install fwd
Usage
EventEmitter → EventEmitter
var fwd = require('fwd');
var Stream = require('stream');
var EventEmitter = require('events').EventEmitter;
var src = new EventEmitter();
var dest = new EventEmitter();
fwd(src, dest);
dest.on('event', function() {
// success
});
src.emit('event');
Stream → EventEmitter
var src = new Stream();
src.readable = true;
var dest = new EventEmitter();
fwd(src, dest, {'data': 'entry'});
EventEmitter → Stream
var src = new EventEmitter();
var dest = new Stream();
dest.writable = true;
fwd(src, dest, {'entry': 'data'});
fwd(src, dest, {'wrong': JSON.stringify})
Rules
You can rewrite data on-the-fly:
var src = new EventEmitter();
var dest = new EventEmitter();
fwd(src, dest, '*'); // the same as with no 3rd argument
fwd(src, dest, ['event1', 'event2']) // only forward event1 and event2
fwd(src, dest, [{'event1': 'entry'}, '*']) // forward event1 as entry and everything else
fwd(src, dest, [{'event1': function(data) { // forward event1 with it's data doubled
return data*2;
}}]);
fwd(src, dest, [{'event1': function(event, data) { // also rewrite the event name
return {
event: 'event-foo',
data : data*2
}
}}]);
fwd(src, dest, function(event, data) { // forward and rewrite everything
return { // the same as: {'*': function(){ ... }}
event: 'my-'+event,
data : JSON.stringify(data)
}
});
API
fwd(src, dest)
Forward all events from src
to dest
.
fwd(src, dest, event=string)
Forward only event
.
fwd(src, dest, events=[string,..])
Forward only events
.
fwd(src, dest, mapping={from: to})
Rewrite names and fwd only that. mapping
can be in an array to do multiple rewrites at one.
fwd(src, dest, fn=function)
Apply fn
to
(data)
and return modifieddata
(event, data)
and return{event:'event', data:'data'}
fn
can also appear inside mappings.
License
Copyright (c) 2012 Julian Gruber <[email protected]>
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.