Brad Fitzpatrick | 4ec753e | 2014-09-17 12:58:34 -0700 | [diff] [blame] | 1 | This is a work-in-progress HTTP/2 implementation for Go. |
| 2 | |
Brad Fitzpatrick | 00b90c6 | 2014-11-18 17:40:06 -0800 | [diff] [blame] | 3 | It will eventually live in the Go standard library and won't require |
| 4 | any changes to your code to use. It will just be automatic. |
| 5 | |
| 6 | Status: |
| 7 | |
| 8 | * The server support is pretty good. A few things are missing |
| 9 | but are being worked on. |
Brad Fitzpatrick | 1faa3a4 | 2015-02-09 20:56:08 -0800 | [diff] [blame] | 10 | * The client work has just started but shares a lot of code |
| 11 | is coming along much quicker. |
Brad Fitzpatrick | 00b90c6 | 2014-11-18 17:40:06 -0800 | [diff] [blame] | 12 | |
Brad Fitzpatrick | 4ec753e | 2014-09-17 12:58:34 -0700 | [diff] [blame] | 13 | Docs are at https://godoc.org/github.com/bradfitz/http2 |
Brad Fitzpatrick | 00b90c6 | 2014-11-18 17:40:06 -0800 | [diff] [blame] | 14 | |
| 15 | Demo test server at https://http2.golang.org/ |
| 16 | |
Matt Keenan | 0d51c71 | 2014-11-19 15:10:32 +0000 | [diff] [blame] | 17 | Help & bug reports welcome. |