Developer tools
Browser-based utilities for everyday coding work — format JSON or XML, test regular expressions live, beautify or minify HTML/CSS/JS, generate UUIDs, and build cron expressions with a plain-English explanation. All offline-capable; nothing you paste leaves the page.
Why browser-based?
Pasting code or data into a remote tool is a small but real privacy risk — internal API responses, customer records, secret tokens. Every tool here runs entirely in your browser via the platform's native APIs (JSON.parse, DOMParser, RegExp, crypto.getRandomValues) so nothing you paste is uploaded anywhere.
Need something not on this list? Drop us a note via the contact page.
Common questions
Do I need an internet connection?
You need it to load the page once. After that, everything runs locally — disconnect and the tools still work. The PWA install button (top-right on mobile) makes them work offline permanently.
Are these production-grade?
For everyday development and quick checks, absolutely. For build-pipeline use (e.g. minifying JS at deploy time) you'll still want dedicated tools like Prettier, terser, esbuild, etc. — they handle edge cases (template literals, ES2024 syntax, source maps) that simple browser-based tools don't.
Can I link to a specific input state?
Not yet. We're working on shareable URLs that encode the input as a query param.