Minify Json
A simple, ad-light tool to minify json. Everything happens on your device: feed it { "a": 1, "b": 2 } and get {"a":1,"b":2} back. Your files never touch a server.
Open JSON Formatter & Validator →
Examples
{ "a": 1, "b": 2 } | → | {"a":1,"b":2} |
{"b":1,"a":2} | → | {
"b": 1,
"a": 2
} |
{"b":1,"a":2} | → | {
"a": 2,
"b": 1
} |
🔒 Runs in your browser. Nothing uploaded.