duplex-emitter
v2.1.2
Published
Duplex Event Emitter
Downloads
5,939
Readme
duplex-emitter
Turns a duplex streams into an event emitter.
Create
var s = net.connect(...);
var duplexEmitter = require('duplex-emitter');
var emitter = duplexEmitter(s);
Emit
You can emit events. They will be serialized (to JSON) and piped to the stream.
emitter.emit('event1', arg1, arg2); // Send event to the other side
Receive
You can listen for events from the peer:
// Got event from the peer
emitter.on('event2', function(arg1, arg2), {
//...
})