node-stream-zip icon indicating copy to clipboard operation
node-stream-zip copied to clipboard

node.js library for fast reading of large ZIPs

Results 18 node-stream-zip issues
Sort by recently updated
recently updated
newest added

I have a zip file that is being flagged as a "Malicious entry". That part is fine and throws an exception as expected, but then I'm getting stuck. If I...

Adds the `setFs` method which exists in js to the typescript types.

How to create brand new ZIP archive and start populate an new stream?

Zip format doesn't allow real unzipping from a stream as it starts from the end and you can't really know the end of a stream. Nevertheless, it doesn't mean you...

I am attempting to add zip support for [react-explorer](https://github.com/warpdesign/react-explorer) and would have the need to get the entries for a specific directory within a zip file, something like: `zip.entries('path/into/zip/file')`, but...

Consider the following code example when using the async API: ``` const zip = new StreamZip.async({file: 'unreadable.zip', storeEntries: true }); try { await zip.entries(); } finally { await zip.close(); }...

Hey! First off, thanks for the lovely library...we've been using it for a good while with no issues. Recently, a few users (3 so far, but not all of them...

This is one of my fav ZIP libs, but I wish it could read zip files from a stream or a buffer instead of just files.

May i know when you are planning to fixed the issue regarding UTF8 filename support. We are facing issue regarding file name(Not Support Norwegian Characters) in our project. This issue...