https://github.com/daskol/msgpack-cli
command line msgpack encoder & decoder
https://github.com/daskol/msgpack-cli
cli go golang json message-pack msgpack
Last synced: 11 months ago
JSON representation
command line msgpack encoder & decoder
- Host: GitHub
- URL: https://github.com/daskol/msgpack-cli
- Owner: daskol
- License: bsd-3-clause
- Created: 2018-11-26T19:33:26.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-11-26T19:44:15.000Z (about 7 years ago)
- Last Synced: 2025-01-12T21:29:26.170Z (12 months ago)
- Topics: cli, go, golang, json, message-pack, msgpack
- Language: Go
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# msgpack-cli
*command line msgpack encoder & decoder*
## Overview
### Building
```bash
$ go install github.com/daskol/msgpack-cli
```
### Usage
```bash
$ msgpack-cli encode <<< "Hello, World!" > hello.msgpack
$ msgpack-cli decode < hello.msgpack
"Hello, World!"
```