client-zip icon indicating copy to clipboard operation
client-zip copied to clipboard

A client-side streaming ZIP generator

Results 15 client-zip issues
Sort by recently updated
recently updated
newest added

Bumps [terser](https://github.com/terser/terser) from 5.12.1 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...

dependencies

As mentioned in #39 and #23 non-ASCII filenames are incorrectly shown in Windows zip file viewer. If file in the zip archive has language encoding flag set (bit 11) then...

**Is your feature request related to a problem? Please describe.** It would be useful to be able to set a custom attachment filename through the Content-Disposition header. **Why is your...

enhancement
good first issue
hacktoberfest

**Why is your feature relevant to client-zip?** Encryption is on `client-zip` roadmap, but the author does not see use case for it. Therefore, I would like to add my use...

enhancement

Some old zip utilities do not understand UTF-8 in the basic filename field. They require the "Unicode Path Extra Field" instead. That field could be included automatically whenever the original...

enhancement
wontfix

This is an alternate version of client-zip with SIMD-enabled CRC32, where the basic algorithm is loaded synchronously as before, and the optimised version can be swapped in later from an...

When the input for a ZIP entry is a string, it is currently transformed into a Uint8Array, even for large strings. When the browser supports [TextEncoderStream ](https://encoding.spec.whatwg.org/#interface-textencoderstream), we should use...

enhancement
good first issue

**Describe the bug** We've been using `client-zip` on our platform , we decided to not go for the streaming alternative initially since we wanted to support Safari as well. That...

bug

**Describe the bug** When using `client-zip` in a shared context, `react-native` fails to build. We have both a web & mobile app that use a shared "core" folder. ``` myApp/...

Hello! I am using `client-zip` to package up audio tracks (probably ~75-100 at a time) in my NextJS app. The first few times I ran this, it was excitingly performant...