質問

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