Gunzip使用javascript / node的API流?

时间:2011-06-20 18:58:40

标签: javascript node.js gzip

我正在使用node.js与返回gzip压缩数据的API进行一些交互。我浏览了包管理器和wiki以获得一个好的压缩库,但找不到一个没有被放弃/根本没有工作的库。知道如何使用javascript或节点来压缩压缩数据吗? (或者如何一起避免数据?)

以下是我对评论的评论:

app.get('/', function(req, res){
    // rest is a restler instance
    rest.get('http://api.stackoverflow.com/1.1/questions?type=jsontext', {
            headers: {"Accept-Encoding": 'deflate'}, 
            //tried deflate, gzip, etc. No changes
    }).on('complete', function(data) {
             // If I do: sys.puts(data); I get an exception
             // Maybe I could do something like this:
             /*
             var child = exec("gunzip " + data,
                    function(error, stdout, stderr) {
                            console.log('stdout: ' + stdout);
                            console.log('stderr: ' + stderr);
                             if (error !== null) {
                                    console.log('exec error: ' + error);
                            }
                     }); 
             */
    });

});

1 个答案:

答案 0 :(得分:4)

我成功地使用了这个:

https://github.com/waveto/node-compress

this.get = function(options, cb){
  http.get({host: 'api.stackoverflow.com', path:'/1.1/questions?' + querystring.stringify(vectorize(options || {}))}, function(res){
    var body = [];
    var gunzip = new compress.Gunzip();
    gunzip.init();

    res.setEncoding('binary');
    res
      .on('data', function(chunk){
        body.push(gunzip.inflate(chunk, 'binary'));
      })
      .on('end', function(){
        console.log(res.headers);
        gunzip.end();
        cb(null, JSON.parse(body.join('')));
      });
  }).on('error', function(e){
    cb(e);
  })
}