Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/maxzender/jv

Helps you view JSON on the command-line.
https://github.com/maxzender/jv

cli go golang json termbox-go terminal

Last synced: about 2 months ago
JSON representation

Helps you view JSON on the command-line.

Awesome Lists containing this project

README

        

[![Go Report Card](https://goreportcard.com/badge/maxzender/jv)](https://goreportcard.com/report/maxzender/jv)
[![Build Status](https://travis-ci.org/maxzender/jv.svg?branch=master)](https://travis-ci.org/maxzender/jv)

# jv
jv (for jsonviewer) helps you view your JSON.

[![asciicast](https://asciinema.org/a/123606.png)](https://asciinema.org/a/123606)

## Installation
```
go get -u github.com/maxzender/jv
```

## Example usage
```
jv file.json
```
Or by reading from `stdin`:
```
jv < file.json
echo '{"foo": "bar"}' | jv
```