4 stable releases

2.0.0 Apr 28, 2022
1.2.0 Sep 4, 2021
1.0.1 Aug 18, 2021

#134 in Value formatting

Download history 6/week @ 2023-12-03 2/week @ 2023-12-10 142/week @ 2023-12-17 8/week @ 2023-12-31 11/week @ 2024-01-07 1/week @ 2024-01-14 83/week @ 2024-02-04 79/week @ 2024-02-11 46/week @ 2024-02-18 76/week @ 2024-02-25 29/week @ 2024-03-03 18/week @ 2024-03-10

171 downloads per month
Used in 5 crates (4 directly)

MIT license

10KB
197 lines

Extremely fast JSON formatter

jsonformat is an extremely fast JSON formatter.

It formats over 20MB of nested JSON in 60ms.

Library crate

For the library crate, look at docs.rs

Binary Install

You need Rust installed on your system
cargo install jsonformat-cli

Binary Usage

jsonformat-cli 0.2.0
Nilstrieb <nilstrieb@gmail.com>
Formats JSON extremely fast

USAGE:
    jsonformat [OPTIONS] [INPUT]

ARGS:
    <INPUT>    The input file

OPTIONS:
    -h, --help                         Print help information
    -i, --indentation <INDENTATION>    The indentation, s will replaced by a space and t by a tab.
                                       ss is the default
    -o, --output <OUTPUT>              The output file
    -V, --version                      Print version information

Reads from stdin if no file is supplied. Outputs to stdout if no output file is specified.

Error handling

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,

How?

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.

No runtime deps