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

When static middleware is enabled, sending a request without Accept-Encoding set would cause a premature call to pass() before checking if the requested file exists. This meant that calls to...

As described in #50, I made gzippo cache all files, but compress only those matched. This is useful to speedup serving of all static files.

I expected: ``` routes.use("foo.css", gzippo.staticGzip("build")) ``` to look for ``` build/foo.css ``` but this doesn't work.

Given a URL like this: /FOO/bar/baz.jpg how can I pass just "bar/baz.jpg" to gzippo, ignoring FOO? I believe the regular connect middleware checks for the existence of an arg, like...

I have an issue where gzippo overrides the http headers, and it causes my html files to never refresh. For example: **express.js:** ``` var express = require('express'); var app =...

It would be great if gzippo would cache also non-gziped files in memory. Like images and such. To speed up file access.

If i try to pass the value 0 for clientMaxAge, it instead gets the default value. Looks like a logic issue where the clientMaxAge variable is set up.

ySlow speed is complaining about expires headers not being set. Should gzippo have an option to set this as well as cache-control?

staticSend has been extracted to separate library