nodejs http request compression (without express but with the possibility of renderize files with jade)

StackOverflow https://stackoverflow.com/questions/21460910

Domanda

How to send compressed gzipped file when requested from client ?

For example I have:

var zlib = require("zlib"),
    http = require("http");

http.createServer(function(req, res) {
    /*req.url is the url of the file requested
    how to compress and send the file here?
    consider that usually (facoltative) I can renderize the file also with Jade.renderFile()
    so the best solution is to compress the output before sending to client */
}).listen(80);

and how to cache for avoid multiple gzip requests ?

È stato utile?

Soluzione

resolved compressing html data returned by jade.renderFile() callback

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top