Home

Awesome

UZIP.js

Simple, tiny and fast ZIP library. It has our own DEFLATE compressor and decompressor (alternative to pako.js / ZLIB). It was made from scratch, without using existing implementations.

UZIP.js is faster than pako.js

Installation

Web: Add the UZIP.js script to your webpage:

<script src="UZIP.js"></script>

NodeJS: Install the uzip package:

npm install uzip

Interface

UZIP.parse(buff)

UZIP.encode(obj)

Directories should be "included" inside file names.

    var obj = { "file.txt":new Uint8Array([72,69,76,76,79]),  "dir/photo.jpg":...,  "dir/pic.png":... };       
    var zip = UZIP.encode(obj);

Deflate compression

The API is the same as the API of pako.js, just use UZIP.xyz... instead of pako.xyz....

UZIP.deflateRaw(buff)

UZIP.deflate(buff)

These two functions have an optional third parameter: Options object, which can be {level:L}, where L is the level of compression (0 to 9).

UZIP.inflateRaw(buff)

UZIP.inflate(buff)

These two functions have an optional third parameter: Output buffer (Uint8Array).

DEFLATE or ZLIB stream do not directly store the size of the output uncompressed data. Decompressors usually write the result into a small array, which is enlarged (copied into a bigger array) during the process.

Practical applications of DEFLATE (like ZIP or PNG files) usually store the size of uncompressed data. If you provide the output buffer, decompression is faster (no need for gradual enlarging of the output array).