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

node.js cross-platform unzip using streams

Results 86 node-unzip issues
Sort by recently updated
recently updated
newest added

Create an empty file: ``` $ touch a.zip ``` Try and unzip using this module: ``` js var fs = require('fs') , unzip = require('unzip') , os = require('os') ,...

when the zip file is ziped in mac os, in windows , there will be a '__MACOX' folder in the archive, and the error event will emit. how to fixed...

JetBrains TeamCity can pack artifacts as zip files. I'm trying to unzip a file from my build artifacts with `unzip`. It's failing with error : ``` Error: invalid signature: 0x47d68d75...

I've got a script that downloads zips from github and unzips them into a temporary directory. On machines with 4 gigs or less, it's crashing on any file over 2...

Using in strict mode raises an error: ``` wantMode = wantMode & 0777 ^^^^ SyntaxError: Octal literals are not allowed in strict mode. ```

One of the files in my zip is a JSON file. I would like to stream in the zip and when I get to this file pull the contents directly...

I'm unzipping an mac app and for some reason if I use `node-unzip` I get this message. ![screen shot 2015-01-15 at 12 35 34 pm](https://cloud.githubusercontent.com/assets/296798/5762812/1ad4a60c-9cb3-11e4-9296-0e39bf145337.png)

For this [zip file](http://ozten.com/random/apk-factory/application.zip), `unzip.Extract` never fires `error` nor `close` which causes my process to hang. Setting `verbose: true` gives us the following output: ``` Archive: /home/ozten/apk-factory-service/tmp/application.zip inflating: META-INF/zigbert.rsa inflating:...

I continue to be floored by the response to this project. While the original implementation was written on a lark, I carried on as a means to better understand streams,...