/jsonfilter

Pipe json into the app to get formatted stream out.

Primary LanguageGo

jsonfilter

Pipe json into the app to get formatted stream out.

Example

go build main.go
echo "{\"foo\": {\"bar\": [\"baz\"]}}" | ./main
{
  "foo": {
    "bar": [
      "baz"
    ]
  }
}