yazl icon indicating copy to clipboard operation
yazl copied to clipboard

yet another zip library for node

Results 29 yazl issues
Sort by recently updated
recently updated
newest added

I use addReadStream API to create a ZIP file based on multiple streams. Works as expected when streams are locally created streams. But there is an issue when streams come...

Same as https://github.com/thejoshwolfe/yauzl/pull/148 for yazl. See example build: https://github.com/n-peugnet/yazl/actions/runs/6410244228

Using `addFile` resolves symlinks, which isn't always the wanted behaviour. I've created a prototype method for adding an existing symlink to an archive in the same style as `addFile`. At...

Currently `mtime` takes in a `Date`, but JS `Date` objects are notoriously quirky. One major problem is the fact that JS `Date` has time zone information, but archive file formats...

First of all, thank u for this library, this is one of the best library for archive files. But I have a question, do you have task to add functional...

The title says it all. I'm trying to do a very special task for zipping files into a zip, and this seems to be a big issue I'm having. When...

G'day guys, I came across your repository and it seems great, exactly what I'm looking for, just have a quick question, I want to know if this supports unzipping for...

Hi, I noticed that you throw errors on the instance of `ZipFile` class. So should I catch errors like this? ``` var zipfile = new yazl.ZipFile(); //... zipfile.on('error', error=>console.error(error)); ```...

This is a follow up of #1 . I see that we can get the final zipfile size in the callback to `.end`. However, I would like to know that...