Popularity
3.6
Declining
Activity
0.0
Stable
65
5
11

Programming language: Go
License: zlib License
Tags: Utilities    

jsonf alternatives and similar packages

Based on the "Utilities" category.
Alternatively, view jsonf alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of jsonf or a related project?

Add another 'Utilities' Package

README

Console JSON formatter with query feature.

Install:

$ go get github.com/miolini/jsonf

Usage:

Usage of jsonf:
  -c=true: colorize output
  -d=false: debug output to stderr
  -f=true: format output json to stdout
  -q="": json query
  -s=true: syntax hightlight
  -v=false: verbose output to stderr

Examples:

$ echo '{"uid":1,"email":"[email protected]","address":{"city":"New-York","country":"US"}}' | jsonf

Output

$ echo '{"uid":1,"email":"[email protected]","address":{"city":"New-York","country":"US"}}' \
  | jsonf -q 'value["address"]["country"]'
"US"

Using from another Golang program

import (
  ...
  "github.com/miolini/jsonf/jsonflib"
  ...
)
...
    jsonRaw, err := jsonflib.Highlight(
      jsonRaw,
      jsonflib.HighlightFlags{Colorize: true, Verbose: false, Debug: false},
    )
    if err != nil {
      return err
    }