jsonformat
is an extremely fast JSON formatter.
It formats over 20MB of nested JSON in 60ms.
You need Rust installed on your system
cargo install jsonformat-cli
``` jsonformat-cli 0.2.0 Nilstrieb nilstrieb@gmail.com Formats JSON extremely fast
USAGE: jsonformat [OPTIONS] [INPUT]
ARGS: The input file
OPTIONS:
-h, --help Print help information
-i, --indentation
Reads from stdin if no file is supplied. Outputs to stdout if no output file is specified.
jsonformat
does not report malformed json - it can't even fully know whether the json is actually malformed.
Malformed json is just formatted kind of incorrectly, with no data lost and no crashes. If you find one, open an issue,
jsonformat
does not actually parse the json, it just loops through each character and keeps track of some flags.
It then copies these characters to the output buffer, adding and removing whitespace.