fwd
Forward one (emitter|stream)
's events to another -> connect parts of your application whose interface you have no control over.
This is compatible both with the node-core EventEmitter and with component/emitter.
Installation
$ component install juliangruber/fwd$ npm install fwd
Usage
EventEmitter → EventEmitter
var fwd = ;var Stream = ;var EventEmitter = EventEmitter;// or: var EventEmitter = require('emitter') var src = ;var dest = ; ; dest; src;
Stream → EventEmitter
var src = ;srcreadable = true;var dest = ; ;
EventEmitter → Stream
var src = ;var dest = ;destwritable = true; ;;
Stream → Stream
var src = ;srcreadable = true;var dest = ;destwritable = true; ;
Rules
You can rewrite data on-the-fly:
var src = ;var dest = ; ; // the same as with no 3rd argument // only forward event1 and event2 // forward event1 as entry and everything else;;;
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.
stop()
stop
is returned by every fwd
-call, so you can stop forwarding. Use this as stream-unpipe which isn't in the stream class yet.
Tests
$ git clone https://github.com/juliangruber/fwd.git && cd fwd$ npm install$ mocha
License
Copyright (c) 2012 Julian Gruber <julian@juliangruber.com>
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.