Free Developer Tools in 2026: The 60-Tool Stack

By Λ · May 18, 2026 · 15 min read

I have been collecting and building free online developer tools for over a year. The collection grew because every time I needed a tool, the existing options were either slow, ad-heavy, or quietly uploading my data to a server I had never heard of. So I built my own. This post is the result: a guided tour of the 60+ tools I actually use, what each is for, when to reach for it, and what to avoid.

The tools are organized by category. Each entry includes a short description, a link to the tool, and (where relevant) a note about what makes the right tool for the job. Everything here runs entirely in your browser. Nothing uploads your data. The whole list is one page so you can ctrl-F to find what you need.

Categories

Code formatting and conversion

Formatters live or die on accuracy. A "JSON beautifier" that silently mangles your unicode escapes is worse than no tool at all. The ones I trust:

What I do not use

"Code prettifiers" that require pasting into a textarea on a site with five popups. Open Prettier in your IDE, or use my tools, or use prettier --stdin from the CLI. Browser-based formatters with intrusive ads are not worth the friction.

Data formats: JSON, YAML, CSV, XML

Almost every developer day involves moving data between formats. The conversions are simple in principle but full of edge cases (Norway problem in YAML, trailing commas, type coercion). The right tool handles the edge cases without warning.

For deeper comparison of when to use which format, see YAML, TOML, JSON5: when each format wins.

API and HTTP tooling

For the deep CORS debugging flow, see the CORS post. For API testing patterns, see API testing without Postman.

Encoding and decoding

For the conceptual deep-dive, see understanding character encoding.

Security, hashing, and auth

The full 2026 password-hashing recommendation is in this post. UUID v7 migration is covered here.

Image processing

Image tools are the category where "client-side" really matters. Uploading personal photos to a random tool is a privacy hazard most users do not think about.

Background on why I built these client-side: browser canvas is faster than you think. Image-metadata privacy: protecting your privacy from EXIF.

CSS, color, and design

Deep dives: modern CSS layouts, CSS color in 2026, color accessibility for developers, designing for color vision deficiency.

Date, time, and scheduling

Network, DNS, and IP

Pair with: DNS records reference, subnet math post.

Text and content

Generators and SEO

AI / LLM tools

This category is small because I am picky. Most "AI tools" online are wrappers around a single LLM API call, which makes them either an unauthorized free OpenAI endpoint or a way to harvest user prompts. Token counting is the one AI-adjacent tool that genuinely belongs entirely in your browser.

Gaming randomizers

Off-topic for serious developer work but useful for the games I actually play with friends. Eleven tools covering Fortnite, Warzone, PUBG, CS2 (weapons + strat roulette), Marvel Rivals, Dota 2, LoL, R6, Valorant, Apex Legends, Overwatch, Deep Rock Galactic, Helldivers 2, Elden Ring. Rosters are hand-maintained; see how I keep them current.

Reference content

Cheat sheets and reference pages I find myself coming back to:

What I deliberately do not have

To save you searching, here is what BoltQuickTools does NOT do, with rationale:

How I evaluate a new tool to add

Four questions:

  1. Can it run entirely client-side? If not, skip.
  2. Is the existing landscape good? If three popular tools already do this well, I do not need to add a fourth.
  3. Do I personally use this tool? If not, I cannot maintain it well.
  4. Is there a privacy reason to keep it local? Bonus points; these are the tools where BoltQuickTools is most clearly better than the alternatives.

Closing

The full catalog updates regularly. Bookmark the homepage for the searchable grid. The blog covers the deep technical reasoning behind specific tools and patterns. If you spot a gap in this list that fits the criteria above, email me.

Related