Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

Golang middleware to gzip HTTP responses

License

NotificationsYou must be signed in to change notification settings

alexandrestein/gziphandler

 
 

Repository files navigation

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

Usage

CallGzipHandler with any handler (an object which implements thehttp.Handler interface), and it'll return a new handler which gzips theresponse. For example:

package mainimport ("io""net/http""github.com/NYTimes/gziphandler")funcmain() {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]docs, as usual.

License

[Apache 2.0]license.

About

Golang middleware to gzip HTTP responses

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go100.0%

[8]ページ先頭

©2009-2025 Movatter.jp