David Junger
David Junger
I am the developer of [client-zip](/Touffy/client-zip), a very small, pretty fast streaming Zip file generator, written in modern JavaScript and a bit of WASM. A user suggested to me —...
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...
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...