Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/maxzender/jv
- Owner: maxzender
- License: mit
- Created: 2017-06-06T19:20:25.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-10-30T10:53:29.000Z (about 7 years ago)
- Last Synced: 2024-01-24T05:37:10.178Z (11 months ago)
- Topics: cli, go, golang, json, termbox-go, terminal
- Language: Go
- Homepage:
- Size: 83 KB
- Stars: 117
- Watchers: 7
- Forks: 7
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-json - jv - jv (for jsonviewer) helps you view your JSON. (Command-line tools)
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
```