zlib-streams
v1.0.4
Published
WASM-based Compression Streams API implementation using zlib, with support for deflate64 decompression.
Maintainers
Readme
WASM-based Compression Streams API implementation using zlib, with support for deflate64 decompression
The zlib source code is included as a submodule in src/zlib.
Directory Structure
src/— C source code, including inflate9, zlib, wasm bindingsdist/— WASM build outputstest/— C test harnesses, payloads, and shell scripts for verificationdeno/— Deno/Node.js test scripts and WASM runners
Getting Started
1. Clone the repository and initialize submodules
git clone https://github.com/gildas-lormeau/zlib-streams.git
cd zlib-streams
git submodule update --init --recursive2. Build WASM module
- Developmeent
make wasmOutput: dist/zlib-streams-dev.wasm and dist/zlib-streams.js
- Production
make wasm_prodOutput: dist/zlib-streams.wasm and dist/zlib-streams.js
License
See LICENSE for details.
