An open API service indexing awesome lists of open source software.

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.

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