mirror of
https://github.com/Noratrieb/jsonformat.git
synced 2026-01-14 22:25:01 +01:00
readme
This commit is contained in:
parent
96bfb05a4d
commit
60ddcb0bf9
1 changed files with 29 additions and 4 deletions
33
README.md
33
README.md
|
|
@ -1,7 +1,32 @@
|
||||||
Formats json.
|
# Extremely fast JSON formatter
|
||||||
|
|
||||||
Will maybe even be fast in the future, idk
|
`jsonformat` is an extremely fast JSON formatter.
|
||||||
|
|
||||||
would be amazing if it even works.
|
It formats over 60MB of nested JSON in under 0.4s.
|
||||||
|
|
||||||
note: does not actually parse the json to a parse tree or something, it just formats it
|
## Install
|
||||||
|
Currently, you have to build and install it yourself.
|
||||||
|
`cargo build --release`
|
||||||
|
The executable can then be found in `target/release/jsonformat`
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
```
|
||||||
|
USAGE:
|
||||||
|
jsonformat [OPTIONS] [input]
|
||||||
|
|
||||||
|
ARGS:
|
||||||
|
<input> The input file to format
|
||||||
|
|
||||||
|
FLAGS:
|
||||||
|
-h, --help Prints help information
|
||||||
|
-V, --version Prints version information
|
||||||
|
|
||||||
|
OPTIONS:
|
||||||
|
-i, --indent <indentation> Set the indentation used (\s for space, \t for tab)
|
||||||
|
-o, --output <output> The output file for the formatted json
|
||||||
|
```
|
||||||
|
|
||||||
|
## How?
|
||||||
|
`jsonformat` does not actually parse the json, it just loops through each characters and keeps track of some flags. It then copies these characters to the output buffer, adding and removing whitespace.
|
||||||
|
|
||||||
|
The code is currently a bit chaotic, but it works and is fast, so good enough for now. Maybe it could profit from SIMD in the future, but I have never used it and I don't know whether it would work. Maybe some day...
|
||||||
Loading…
Add table
Add a link
Reference in a new issue