Pregunta

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.

¿Fue útil?

Solución

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

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top