gzippo icon indicating copy to clipboard operation
gzippo copied to clipboard

gzippo pronounced `g-zippo` is a nodejs gzip middleware for Connect and express js using the new native node zlib api

Results 14 gzippo issues
Sort by recently updated
recently updated
newest added

I realized that this happens because node sets this._headerSent to true on the first write call([happens in here](https://github.com/tomgco/gzippo/blob/master/lib/compress.js#L129)) and on the [second write call](https://github.com/tomgco/gzippo/blob/master/lib/compress.js#L80) we try to implicitly set the...

When a HEAD request is received the response should only contain headers, without body. Currently both GET and HEAD requests are going to the function sendGzipped() and the body is...

Hi, My app requires thumbnail images to be rendered one by one.. I used gzippo 0.1.3 and it was working fine. Today when I upgraded to 0.1.4, I found that...

Hi, I see that you calculate the etag using the file mtime (modify time), this is all nice and good when working from a single machine with a single copy...