Skip to content

jsonh-org/JsonhCli

Repository files navigation

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

JsonhCli is a command-line interface for converting JSONH v1 to JSON using JsonhCs.

Usage

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

Example

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

About

JSONH for Humans as a Command Line Interface.

Topics

Resources

License

Stars

Watchers

Forks