Developer tools
Private: nothing leaves your browser
The small utilities you reach for a dozen times a day: format some JSON, decode a token, hash a string, generate an ID, check a regex. Each one is its own page, loads instantly and runs as JavaScript on your device, so payloads and secrets never go to a server.
12 tools
All Dev tools
About these tools
Every developer tool here does one job on one page, which means no menus to hunt through and no editor to configure. Paste in what you have, read the result, copy it out.
They all run client side. There is no API call behind the JSON formatter or the JWT decoder, so you can safely paste a production payload, an access token or a config file without it leaving your machine. That also means they stay fast: no round trip, no queue, no rate limit.
A few of these are worth knowing about before you need them. JWT Decoder deliberately will not verify a signature, because doing that would mean asking you to paste a production signing secret into a web page. YAML to JSON follows YAML 1.2, so a country code of NO stays the string NO instead of becoming false, and it names anything it cannot handle rather than quietly dropping it. Hash Generator checks a download against its published checksum without the file going anywhere.