open-vault/vendor/github.com/NYTimes/gziphandler
Jeff Mitchell 9ebc57581d
Switch to go modules (#6585)
* Switch to go modules

* Make fmt
2019-04-13 03:44:06 -04:00
..
.gitignore Switch to go modules (#6585) 2019-04-13 03:44:06 -04:00
.travis.yml Switch to go modules (#6585) 2019-04-13 03:44:06 -04:00
CODE_OF_CONDUCT.md Add gzip compression to UI static content responses (#4664) 2018-05-31 09:42:08 -07:00
CONTRIBUTING.md Add gzip compression to UI static content responses (#4664) 2018-05-31 09:42:08 -07:00
LICENSE Add gzip compression to UI static content responses (#4664) 2018-05-31 09:42:08 -07:00
README.md Update deps (#6580) 2019-04-12 11:51:37 -04:00
go.mod Update deps (#6580) 2019-04-12 11:51:37 -04:00
go.sum Update deps (#6580) 2019-04-12 11:51:37 -04:00
gzip.go Update deps (#6580) 2019-04-12 11:51:37 -04:00
gzip_go18.go Add gzip compression to UI static content responses (#4664) 2018-05-31 09:42:08 -07:00

README.md

Gzip Handler

This is a tiny Go package which wraps HTTP handlers to transparently gzip the response body, for clients which support it. Although it's usually simpler to leave that to a reverse proxy (like nginx or Varnish), this package is useful when that's undesirable.

Install

go get -u github.com/NYTimes/gziphandler

Usage

Call GzipHandler with any handler (an object which implements the http.Handler interface), and it'll return a new handler which gzips the response. For example:

package main

import (
	"io"
	"net/http"
	"github.com/NYTimes/gziphandler"
)

func main() {
	withoutGz := http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
		w.Header().Set("Content-Type", "text/plain")
		io.WriteString(w, "Hello, World")
	})

	withGz := gziphandler.GzipHandler(withoutGz)

	http.Handle("/", withGz)
	http.ListenAndServe("0.0.0.0:8000", nil)
}

Documentation

The docs can be found at godoc.org, as usual.

License

Apache 2.0.