New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature request - add tee support #72

Closed
rbabayoff opened this Issue Oct 25, 2014 · 2 comments

Comments

Projects
None yet
2 participants
@rbabayoff

rbabayoff commented Oct 25, 2014

For piping readable streams to multiple writable streams, not only to the console and to a file as in the shell, but to as many as you like.

@dominictarr

This comment has been minimized.

Owner

dominictarr commented Oct 26, 2014

node streams already support this, just do steam.pipe(process.stdout); stream.pipe(fs.createWriteStream(file))

@rbabayoff

This comment has been minimized.

rbabayoff commented Oct 26, 2014

Thanks!

@rbabayoff rbabayoff closed this Oct 26, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment