0.0.3 • Published 11 years ago

radio_static v0.0.3

Weekly downloads
3
License
-
Repository
-
Last release
11 years ago

Radio Static

Build Status

Usage

Creating a new instance

var RadioStatic = require('radio_static');

var radio = new RadioStatic();

Adding a new stream to the collective

var stream = new Stream();

radio.assimilate(stream);

Any data read from this stream will be written to all of the other assimilated streams (not itself). Also that data will be emitted as a 'data' event from radio.

Sending data to all assimilated streams

radio.write('something useful');

Notes

Any stream emitting an 'end' event will be remove from the collective.

calling the end method on radio will end all streams in the collective.