Parse JSON string in your CLI
- support JSON5
$ npm install -g json-parse-cli
Just type json-parse -h
for detail usage.
$ json-parse --help
Usage:
$ json-parse [options] <path>
Options:
-h --help Show this screen.
-v --version Show version.
-i --indent Indent length (only work with --format=json).
-f --format Format, object|json|json5 [default: object].
Examples:
$ json-parse foo.log
$ json-parse --format=json foo.log
$ json-parse --format=json --indent=4 foo.log
$ cat foo.log | json-parse -f json -i 4
$ echo '{"name": "akccakcctw"}' | json-parse
https://github.com/akccakcctw/json-parse-cli/issues
MIT © Rex Tsou