문제

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