Skip to content

Instantly share code, notes, and snippets.

@kessler
Last active December 20, 2015 01:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kessler/6050782 to your computer and use it in GitHub Desktop.
Save kessler/6050782 to your computer and use it in GitHub Desktop.
end write stream
var fs = require('fs');
var rs = fs.createReadStream('bla.txt');
var ws = fs.createWriteStream('bla2.txt');
ws.on('finish', function() {
console.log('yey!');
});
rs.on('end', function() {
console.log('read stream closed');
});
setInterval(function() {
console.log('tick!')
}, 1000);
rs.pipe(ws);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment