41 tools

Developer Tools

Developer tools cover the small tasks that interrupt a working day: pretty-printing a JSON payload, validating XML, minifying CSS before a deploy, decoding a JWT while debugging an API, generating UUIDs, testing a regular expression or looking up an HTTP status code. Formatting and validation run in your browser so unreleased code and production payloads stay local.

All developer tools

41 tools

Developer Tools: frequently asked questions

Can I paste a production payload safely?
Formatters, validators, minifiers, decoders and generators run entirely in your browser and transmit nothing. The one exception is the QR code generator, which renders on our server; every page states its processing model in a badge near the top.
Does the JWT decoder verify signatures?
No, and that is deliberate. Verifying a signature would require you to paste a secret or private key. The decoder only reads the header and payload, and the page states clearly that decoded claims are not trustworthy until your own backend verifies them.
Are the formatters safe to use on minified third-party code?
Yes. The formatters only change whitespace between tokens; string literals, template literals, regular expressions and comments are preserved byte for byte.

Other categories

All tools →