https://github.com/while-loop/hpack
Go implementation of HTTP/2's compression format [RFC7541] for efficiently representing HTTP header fields.
https://github.com/while-loop/hpack
go golang hpack http http2 net
Last synced: 3 months ago
JSON representation
Go implementation of HTTP/2's compression format [RFC7541] for efficiently representing HTTP header fields.
- Host: GitHub
- URL: https://github.com/while-loop/hpack
- Owner: while-loop
- License: apache-2.0
- Created: 2017-07-25T14:25:15.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-29T21:17:54.000Z (over 8 years ago)
- Last Synced: 2024-06-20T11:14:19.420Z (almost 2 years ago)
- Topics: go, golang, hpack, http, http2, net
- Language: Go
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
hpack
=====
Go implementation of HTTP/2's compression format [RFC 7541](https://tools.ietf.org/html/rfc7541) for efficiently representing HTTP header fields.
Installation
------------
```
$ go get github.com/while-loop/hpack
```
Usage
-----
```go
package main
import (
"fmt"
)
func main() {
fmt.Println("Hello World")
}
```
Changelog
---------
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
[CHANGELOG.md](https://github.com/while-loop/hpack/blob/master/CHANGELOG.md)
License
-------
hpack is licensed under the Apache 2.0 license. See
[LICENSE](https://github.com/while-loop/hpack/blob/master/LICENSE)
for details.
Author
------
Anthony Alves