I need to compress a buffer in Node.js with zlib at the extreme compression level. The outputted header should be 78 DA. Unless I'm missing something, the Node.js documentation doesn't really describe how to use the zlib.Deflate class. It doesn't accept any parameters.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use If you want to do this all in-memory:
Of course, if you're dealing with large amounts of data, stream the output to a file rather than buffering everything in memory. |
|||||||||
|