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

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

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!"
```