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

node.js cross-platform unzip using streams

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

I want to stream concurrently from a single zip over http or s3. This library seems to work fine, but upon closer inspection I notice higher than expected network usage...

I have a yeoman generator plugin that uses unzipper to extract the contents of a zip file downloaded from github (https://github.com/OfficeDev/office-addin-taskpane/archive/yo-office.zip) as the basis of a new project (see code...

The stream method under the `Open` method did not utilize the fact that we know the size of the individual compressed file and, therefore, can avoid having the stream unbounded,...

There is a good chance I am doing something wrong, but I feel like I tried everything. customSource need to be able to retry on stream error. There are two...

How do I use Open.url with native "fetch" on Node.js v20.9.0 ? ```js const directory = await unzipper.Open.url(fetch, 'https://www.dwsamplefiles.com/?dl_id=559'); ``` ``` TypeError: Failed to parse URL from [object Object] at...

## Improvements * Support `Open.gcs` for Google Cloud Storage, using the `@google-cloud/storage` npm package. ### Signature ```ts unzip.Open.gcs(storage: Storage, params: { Bucket: string, Key: string }) ``` ### Example ```ts...

This is an attempt to add support for [@aws-sdk/client-s3](https://www.npmjs.com/package/@aws-sdk/client-s3) (AWS SDK v3). If merged, this PR should resolve https://github.com/ZJONSSON/node-unzipper/issues/241

I'm trying to unzip a `.zip` file containing [chromedriver](https://chromedriver.chromium.org/downloads) using [[email protected]](https://www.npmjs.com/package/unzipper/v/0.10.14). When attempting to unzip `chromedriver_linux64.zip` downloaded from [here](https://chromedriver.storage.googleapis.com/index.html?path=111.0.5563.64/), the extraction succeeds, but the executable is corrupted: ```sh $ unzip...

The extracted files are getting corrupts, this started to happen after upgrading from Node 18 to Node.js 19.8.1 on Windows 10 (haven't tested if broader issue) Below is a code...

fstream is no more maintained: - repository is archived https://github.com/npm/fstream - last release is 1.0.12 and was 3 years ago https://github.com/npm/fstream/releases/tag/v1.0.12 There is a critical CVE in the chain of...