JSON for Humans.
JSON is great. Until you miss that trailing comma... or want to use comments. What about multiline strings? JSONH provides a much more elegant way to write JSON that's designed for humans rather than machines.
Since JSONH is compatible with JSON, any JSONH syntax can be represented with equivalent JSON.
JsonhCli is a command-line interface for converting JSONH v1 to JSON using JsonhCs.
Description:
The JSONH Command Line Interface
Usage:
JsonhCli [options]
Options:
--input-path <input-path> The path of the JSONH file to input
--input <input> The JSONH string to input
--output-path <output-path> The path of the JSON file to output. If null, logs the output
--pretty Whether to indent the outputted JSON
--version Show version information
-?, -h, --help Show help and usage information
Parse JSONH in example.jsonh
and write indented JSON to example.json
:
JsonhCli --input-path "example.jsonh" --output-path "example.json" --pretty
Parse JSONH string and output indented JSON:
JsonhCli --input "[hello, world]" --pretty