Skip to content

earthboundkid/json-tidy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

json-tidy GoDoc Go Report Card

Pretty prints JSON

Installation

First install Go.

If you just want to install the binary to your current directory and don't care about the source code, run

GOBIN=$(pwd) GOPATH=$(mktemp -d) go get github.com/carlmjohnson/json-tidy

Screenshots

$ json-tidy -h
Gets input files and URLs (defaults to stdin) and outputs tidy JSON.

Usage of json-tidy:

json-tidy [opts] <file|url|->...
  -html-safe
        Escape special characters for easy embedding in HTML
  -indent string
        Identation string (default "\t")
  -output file
        write tidy JSON to file (default stdout)
  -prefix string
        Prefix string
$ echo '{"a": 1, "b": [true, false]}' | json-tidy
{
        "a": 1,
        "b": [
                true,
                false
        ]
}

About

Pretty prints JSON from stdin, files, or URLs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages