less clever example

This commit is contained in:
Mathias Buus 2013-12-21 10:03:16 +01:00
parent 2fb4b6bf4e
commit 49c0a025aa

View file

@ -22,11 +22,12 @@ var pack = tar.pack(); // p is a streams2 stream
pack.entry({ name: 'my-test.txt' }, 'Hello World!');
// add a file called my-stream-test.txt from a stream
myStream.pipe(pack.entry({ name: 'my-stream-test.txt' }, function(err) {
var entry = pack.entry({ name: 'my-stream-test.txt' }, function(err) {
// the stream was added
// no more entries
pack.finalize();
}));
});
myStream.pipe(entry);
// pipe the pack stream somewhere
pack.pipe(process.stdout);