node-unzip
node-unzip copied to clipboard
node.js cross-platform unzip using streams
``` javascript require('request')('https://github.com/yui/pure/releases/download/v0.3.0/pure-0.3.0.zip') .pipe(unzip.Parse()) .on('entry', function(entry){ if (entry === 'Directory') { console.log('directory found!'); } }) ``` there' s no Directory entry found.
looks like the version of `unzip` > `fstream` > `graceful-fs` is giving the dreaded Node 6 warning. Any possibility of bumping `fstream`? ``` fs: re-evaluating native module sources is not...
The problem is when i upload docs,ppt,pdf files its working fine but when i upload jpg , png files it generates the Error: invalid signature: 0xe0ffd8ff. If there is anybody...
A nice alternative for this library is https://github.com/thejoshwolfe/yauzl which is quite hard to find (due to its name), but worth checking out, so I thought I'd share it with anyone...
How to extract a zip file with a giving folder name? exemple:folder a to b.zip ,how to extract b.zip to folder b
It seems that in node v4.1.0, `unzip.Parse()` does not work according to the docs. This does not work: ``` javascript res .pipe(unzip.Parse()) .pipe(writeStream) .on('finish', () => { console.log('finish') }); ```...
Finished
How to fire the finished or end event?
This is just a real quick first pass, with little knowledge of the rest of the codebase. The crux of the issue is that entry.size is unassigned before the "entry"...
Using the example on the README, the get `undefined` for the value of entry.size. Is that a known issue? Couldn't find anything in any other issue.
Referencing this issue https://github.com/joyent/node/issues/6384 here as it started out with me trying to use unzip with a github repo release zipfile Summary: any release zipfile from a github repositiory will...