1.0.0 • Published 11 years ago

stream-copy v1.0.0

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

stream-copy

Copy writable stream to multiple writable streams.

Installation

npm install --global stream-copy

Example

Copy process.stdout to a file:

var stream = require('stream');
stream.copy = require('stream-copy').copy;
stream.copy(process.stdout, fs.createWriteStream(filename));

You can copy to multiple streams:

stream.copy(origin, stream1, stream2...)

MIT Licensed