1
vote
0answers
152 views

Is there any ability to decompress gzipped string using zlib in nodeJS?

Good day everyone! I'm trying to adapt my code with nodeJS, but got a little issue with decompression. I'm doing a request to server with xhr, and getting a compressed data in response, but I can't ...
1
vote
2answers
703 views

Decompress gzip and zlib string in javascript

I want to get compress layer data from tmx file . Who knows libraries for decompress gzip and zlib string in javascript ? I try zlib but it doesn't work for me . Ex , layer data in tmx file is : ...
0
votes
1answer
101 views

How to determine the number of bytes read from buffer passed to node.js zlib.inflate?

I have a node.js Buffer instance, where the buffer is a concatenation of sections, and each section has a 20 byte header followed by deflated data. What I need is to read the deflated data using ...
1
vote
1answer
142 views

Socket.IO and Websockets per-message compression in Webkit

How do I enable support of "Sec-Websocket-Extension: x-webkit-deflate-frame" in Socket.IO library for per-message compression? It is implemented in Webkit by March 2012, but I could not find the way ...
0
votes
1answer
113 views

compress/gzip/deflate streaming content using res.write

var express = require('express') var app = module.exports = express() function getImages(callback) { callback() } app .set('views', __dirname + '/views') .set('view engine', 'jade') ...
0
votes
0answers
171 views

decompress a gz file using zlib

I wrote the code below to open a txt file and perform some transformations on it, then write out the transformations to a new file. The original source file though is gzip'd and I can't get the zlib ...
6
votes
3answers
1k views

How do I unzip a NodeJS request's module gzip response body?

NodeJS: How do I unzip a gzipped body in a request's module response? I have tried several examples around the web but nothing works... request(url, function(err, response, body) { ...
1
vote
1answer
285 views

Node.js: zlib Compression in a tcp connection

I am new to node.js and currently working on a tcp server. I want all the messages to be sent to client in a compressed format.I am using zlib for this purpose. The following sample is a code on ...
9
votes
4answers
3k views

How to download and unzip a zip file in memory in NodeJs?

I want to download a zip file from the internet and unzip it in memory without saving to a temporary file. How can I do this? Here is what I tried: var url = ...
0
votes
2answers
176 views

Looking for ZLIB library in JS or Pure Java that can work with GWT

I am developing with GWT and need to decomrpess some data. I can't find any good library in JS or in Java that would compile with GWT.
1
vote
1answer
685 views

Node.JS http server with compression - sending variable as response

Sorry for the vague question.. but I'm not sure quite what the problem is. I have a node http server that I'm using to serve JSON data to a web app. It works great, but my JSON strings are starting ...
5
votes
3answers
853 views

Node.js/Javascript Equivalent of Java's Deflater class

I have a Java backend that uses Inflater. I wish to feed data to it via Node.js. Is there any equivalent to the Deflater class? EDIT: I should clarify a little. I have tried using ...
1
vote
5answers
5k views

ZLIB Decompression - Client Side

I am receiving data as an "ZLIB" compressed inputstream. Using Javascript/Ajax/JQuery, I need to uncompress it on the client side. Is there a way to do so? Please help. I already have this working ...
1
vote
2answers
715 views

GZip Compression For JQuery Without Server Access

all. I am required to build a website with each page under 130kb. I know that JQuery 1.4.4 is ~28kb when it's g-zipped, but it's 77kb minified, which is just too much for this particular assignment. I ...