https://github.com/dgrr/msgpack
https://github.com/dgrr/msgpack
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dgrr/msgpack
- Owner: dgrr
- License: apache-2.0
- Created: 2022-09-26T14:08:46.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-26T14:08:57.000Z (almost 4 years ago)
- Last Synced: 2025-11-23T02:21:27.296Z (8 months ago)
- Language: Go
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# msgpack
msgpack implementation avoiding allocations.
## Usage
```go
package main
import (
"github.com/d2gr/msgpack"
)
func main() {
b := msgpack.AppendString(nil, "Hello world")
// setup connection or whatever you want
conn.Write(b)
}
```