Strip all whitespace from JSON to shrink API payloads and config files, with a byte-for-byte savings report.
Ctrl + Enter to run
Minifying strips every insignificant space, tab and newline. The saving is real but smaller than it looks over the network, because gzip and brotli already compress repeated whitespace extremely well — a minified response often transmits only a few percent smaller than a formatted one.
Where it genuinely pays is storage that is not compressed: a database column, localStorage, a size-capped API field, or an environment variable. The byte counts shown before and after are the number worth checking before you assume the saving exists.