Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lthibault/netstr
Efficient binary serialization of variable-length strings
https://github.com/lthibault/netstr
binary netstring network serialization
Last synced: 26 days ago
JSON representation
Efficient binary serialization of variable-length strings
- Host: GitHub
- URL: https://github.com/lthibault/netstr
- Owner: lthibault
- License: mit
- Created: 2018-05-23T10:05:40.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-05-23T11:16:40.000Z (over 6 years ago)
- Last Synced: 2024-06-20T06:28:49.971Z (5 months ago)
- Topics: binary, netstring, network, serialization
- Language: Go
- Size: 17.6 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NetStr
Fast binary-netstring encoding for variable-length data.
Contrary to the standard netstring format, `netstr` encodes the length
prefix as a variable-length integer. This provides a slightly more compact payload.Pronnounced *netster*.
[![Godoc Reference](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](https://godoc.org/github.com/lthibault/netstr)
[![Go Report Card](https://goreportcard.com/badge/github.com/lthibault/netstr?style=flat-square)](https://goreportcard.com/report/github.com/lthibault/netstr)## Installation
```bash
go get -u github.com/lthibault/netstr
```## RFC
If you find this useful please let me know:
Seriously, even if you just used it in your weekend project, I'd like to hear
about it :)## License
The MIT License
Copyright (c) 2017 Louis Thibault
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.