1 مستودع
Pure JavaScript ports of the gzip compression algorithm for browser and Node.js environments.
Distinct from Gzip Compression: Distinct from Gzip Compression: focuses on JavaScript-specific implementations rather than general gzip algorithm descriptions.
Explore 1 awesome GitHub repository matching data & databases · JavaScript Implementations. Refine with filters or upvote what's useful.
Pako is a pure JavaScript compression library that ports the C zlib library to JavaScript, providing deflate and gzip compression and decompression capabilities. It runs in both browser and Node.js environments by using typed arrays and universal JavaScript, avoiding platform-specific APIs for cross-platform compatibility. The library handles data through bitwise operations for Huffman coding and LZ77 matching, and automatically encodes string inputs to UTF-8 before compression while decoding them back on decompression. It supports streaming chunk-based processing, allowing incremental data h
JavaScript library for compressing and decompressing data in the gzip format.