node-unzip icon indicating copy to clipboard operation
node-unzip copied to clipboard

handle slowly progressing streams

Open martynovs opened this issue 10 years ago • 0 comments

I was trying to download zip with request and pipe it to Parse

  dl_stream = request.get('....');
  dl_stream.pipe(unzip.Parse())
  .on('entry', function(entry) { ...

it failed to extract files because MatchStream get some data before setImmediate was executed

martynovs avatar Feb 13 '15 14:02 martynovs