blob: 16cb516a69a7685f1cf3a502cc4abc4be92ebad7 [file] [log] [blame]
Brad Fitzpatrick4ec753e2014-09-17 12:58:34 -07001This is a work-in-progress HTTP/2 implementation for Go.
2
Brad Fitzpatrick00b90c62014-11-18 17:40:06 -08003It will eventually live in the Go standard library and won't require
4any changes to your code to use. It will just be automatic.
5
6Status:
7
8* The server support is pretty good. A few things are missing
9 but are being worked on.
Brad Fitzpatrick1faa3a42015-02-09 20:56:08 -080010* The client work has just started but shares a lot of code
11 is coming along much quicker.
Brad Fitzpatrick00b90c62014-11-18 17:40:06 -080012
Brad Fitzpatrick4ec753e2014-09-17 12:58:34 -070013Docs are at https://godoc.org/github.com/bradfitz/http2
Brad Fitzpatrick00b90c62014-11-18 17:40:06 -080014
15Demo test server at https://http2.golang.org/
16
Matt Keenan0d51c712014-11-19 15:10:32 +000017Help & bug reports welcome.