13 Free Online Developer Tools
This is the catch-all category for the 13 utilities that do not belong to a format or a language — the ones you reach for while setting a project up or working out why something in production is behaving oddly. There are generators for the boilerplate nobody enjoys writing: .gitignore files assembled from your stack, a GitHub README from a form, QR codes and barcodes, Dockerfile snippets. There are calculators and parsers for the syntax that is easy to get wrong: cron expressions read back in plain English with their next run times, IPv4 subnets broken down from a CIDR block, epoch timestamps across timezones, .env files converted to and from JSON. And there are lookups that answer a question about the outside world: DNS records over DNS-over-HTTPS, IP geolocation, bulk email address validation, and a SQL schema diff that writes the ALTER statements for you.
All 13 Development tools
What you can do with these developer tools
Four loose groups, depending on whether you are creating something, decoding something, or asking about something.
- Generate boilerplate — .gitignore from your languages and editors, a polished README.md, Dockerfile snippets, QR codes, and barcodes.
- Decode tricky syntax — explain a cron expression and preview its next 10 runs, break a CIDR block into network, broadcast, and host range, convert epoch values across timezones.
- Reshape config — parse a .env file into a table or JSON and build one back from JSON, or diff two SQL schemas and generate the ALTER statements to sync them.
- Look things up — query A, AAAA, CNAME, MX, TXT, NS, and SOA records for a domain, or check the geolocation, ISP, and network behind an IP address.
- Validate in bulk — check a whole list of email addresses for syntax, disposable domains, role accounts, duplicates, and likely typos.
Which of these use the network
Most tools on this site never make a request, and the honest exception list matters. DNS Lookup queries Cloudflare over DNS-over-HTTPS, so the domain you type is sent to a resolver — the same as any nslookup. IP Address Info calls a geolocation API for the address you enter. Email Validator checks syntax, disposable domains, and typos entirely locally, and only reaches the network if you opt into the MX record check. Everything else in this category — the generators, the cron parser, the subnet calculator, the .env formatter, the SQL schema diff — runs fully in your browser, and each tool states which category it is in on its own page.