pako
Last updated
Was this helpful?
Last updated
Was this helpful?
zlib port to javascript, very fast!
Why pako is cool:
Almost as fast in modern JS engines as C implementation (see benchmarks).
Works in browsers, you can browserify any separate component.
Chunking support for big blobs.
Results are binary equal to well known (now contains ported zlib v1.2.8).
This project was done to understand how fast JS can be and is it necessary to develop native C modules for CPU-intensive tasks. Enjoy the result!
Famous projects, using pako:
(via )
and by
Benchmarks:
zlib's test is partially affected by marshalling (that make sense for inflate only). You can change deflate level to 0 in benchmark source, to investigate details. For deflate level 6 results can be considered as correct.
Install:
node.js:
browser:
Full docs - http://nodeca.github.io/pako/
Sometime you can wish to work with strings. For example, to send big objects as json to server. Pako detects input data type. You can force output to be string with option { to: 'string' }
.
Pako does not contain some specific zlib functions:
deflate - methods deflateCopy
, deflateBound
, deflateParams
, deflatePending
, deflatePrime
, deflateTune
.
inflate - methods inflateCopy
, inflateMark
, inflatePrime
, inflateGetDictionary
, inflateSync
, inflateSyncPoint
, inflateUndermine
.
High level inflate/deflate wrappers (classes) may not support some flush modes. Those should work: Z_NO_FLUSH, Z_FINISH, Z_SYNC_FLUSH.
Available as part of the Tidelift Subscription
Personal thanks to:
Original implementation (in C):
MIT - all files, except /lib/zlib
folder
ZLIB - /lib/zlib
content
The maintainers of pako and thousands of other packages are working with Tidelift to deliver commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use.
Andrey Tupitsin
Vitaly Puzrin
Vyacheslav Egorov () for his awesome tutorials about optimising JS code for v8, tool and his advices.
David Duponchel () for help with testing.
by Jean-loup Gailly and Mark Adler.