Say I am creating my own module, which sits on top of the 'net' module. My module has its own events, but also allows clients to listen on network events emitted by the tcp connection:
mymod.on('myevent',...); // my event
mymod.on('connect',...); // net event
mymod.on('end',...); // net event
Right now I'm doing the following
...
tcp.on('connect',function(){ self.emit('connect');});
tcp.on('end',function(){ self.emit('end');});
...
Is there a more idiomatic way from me to simply forward all events (or a subset of events) from one module to clients of another module?
I expect such a scenario comes up all the time, so I'd like to do it the cleanest way I can.