I want to deflate very big JSON objects client side (plus base64 encription) and then inflate them on a node.js server with

zlib.inflate( new Buffer( postData, 'base64'), function( err, result ) {
...
)}

Is there any really (!) working implementation for client side deflating out there? I have not found one yet.

有帮助吗?

解决方案

Actually there is a solution that works perfectly and is also lightning fast:

https://github.com/imaya/zlib.js/blob/develop/README.en.md

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top