Orpheus

Developer Tools

These developer tools format, encode and generate common data formats entirely inside your browser. Nothing you paste is transmitted, which matters because the things people paste into online formatters are usually API responses and config files.

22 tools

About developer tools

Every tool in this category is a pure function over a string, which is why none of them need a server and why pasting into one that does is an unnecessary risk. The things developers paste into online formatters are, overwhelmingly, the things they should be most careful with: API responses carrying bearer tokens, configuration files with connection strings, JWTs whose payload identifies a user, log excerpts containing customer data. A formatter that uploads that to be pretty-printed has taken a copy of it, and the retention policy governing that copy is somebody else's. Running the transform in the page removes the question entirely — there is nothing to retain because nothing was sent. The other thing worth knowing about this category is that the transforms are exactly specified, so correctness is checkable rather than a matter of trust. JSON has a published grammar; Base64 has an RFC; SHA-256 has official test vectors, which is what the implementation here is verified against. Where a tool here differs from another, one of them is wrong, and it is usually about Unicode: naive Base64 implementations operate on bytes and corrupt anything outside basic Latin, and naive slug generators strip accented letters instead of folding them.

Every tool runs entirely in your browser. Your files are never uploaded to a server.

Other categories