jsonpp-rs
jsonpp-rs copied to clipboard
UNIX style tool to pretty print json
Hi. Consider the following test: ```bash [user@host ~]$ curl -s http://localhost:8080/fiscalidade/v1/version | jsonpp { "status": "ok", "result": { "major": 0, "minor": 6, "patch": 2 } }[user@host ~]$ ``` Notice the...
It would be cool to have an option for the formatter to print the comma at the beginning of the line. So instead of ```json { "key1": "value1", "key2": "value2"...
Json syntax highlighting would be a great addition to the library. One possibility is highlighting by default when stdout is a tty and no highlighting when stdout is a pipe...
See [jq](https://stedolan.github.io/jq/download/).
While technically not a valid json file, I've come across many files where each line is a separate valid json object. `jq` is an example of a command line tool...
As Rust is so strong performance-wise it'd be cool to be among the fastest json pretty printers out there. Maybe as a start three files with ~1Kb, ~1MB and ~1GB.....