惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Google DeepMind News
Google DeepMind News
博客园 - 司徒正美
WordPress大学
WordPress大学
爱范儿
爱范儿
小众软件
小众软件
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
罗磊的独立博客
博客园_首页
V
V2EX
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
T
Tailwind CSS Blog
大猫的无限游戏
大猫的无限游戏
The Cloudflare Blog
MyScale Blog
MyScale Blog
IT之家
IT之家
H
Help Net Security
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Recent Announcements
Recent Announcements
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
人人都是产品经理
人人都是产品经理

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I built 51 free browser-based developer tools — here's wh...
Henry Y · 2026-05-27 · via DEV Community

Every developer has a collection of bookmarked tool websites. One for JWT decoding, another for JSON formatting, another for generating UUIDs,another for regex testing.

Most of them have three problems:

  1. They upload your data to a server. You paste an internal API response, a JWT containing user IDs, or a private config file — and it silently goes to someone else's backend.
  2. Ads are injected directly into the tool area, breaking concentration right when you're debugging something.
  3. They're slow. A 200 KB React bundle to render a textarea and a button.

So I built DevToolbox — 51 tools that run entirely in your browser. Nothing is ever transmitted to a server.

What's included

The tools cover the most common daily tasks:

  • JSON Formatter & Validator — beautify, minify, error detection with line numbers
  • JWT Decoder — inspect header/payload/expiry without exposing your token
  • Regex Tester — real-time matching with capture group highlights
  • Base64 Encoder/Decoder — text, images, and file drag-and-drop
  • Hash Generator — MD5, SHA-1, SHA-256, SHA-512 via Web Crypto API
  • UUID Generator — v1/v4/v7, bulk generate up to 10,000, export CSV
  • Cron Expression Builder — visual scheduler + next 5 run times
  • SQL Formatter — MySQL, PostgreSQL, SQLite dialect support
  • DNS Lookup & SSL Checker — via Cloudflare DoH and CT logs
  • ...and 42 more

The architecture decision: Astro over Next.js

The hard requirement was Lighthouse Performance > 95 on mobile. That ruled out any framework that ships a full SPA runtime by default.

With Next.js static export, even a page with zero interactivity ships ~200 KB of JavaScript. That's the React runtime, the router, and the hydration scaffolding — none of which a formatting tool needs.

Astro's island architecture solved this cleanly. The page shell —header, layout, SEO content, FAQ, related tools — is pure static HTML with zero JavaScript. The interactive tool component hydrates as a React island only when it scrolls into view (client:visible).

Result: tool pages ship ~40 KB of JS instead of 200+ KB. LCP on mobile 4G is under 1.5 seconds.

Keeping data client-side: the tricky cases

Most tools are straightforward — JSON parsing, Base64 encoding, regex matching all have native browser APIs. But two tools needed a server:

SSL Checker
uses certificate transparency logs (crt.sh). That API has no CORS headers, so a browser fetch fails. Solution: a Cloudflare Pages Function acts as a thin proxy. The query goes browser → CF Worker → crt.sh, so your domain query never comes directly from your IP.

DNS Lookup
uses Cloudflare's DNS-over-HTTPS API (cloudflare-dns.com/dns-query), which does support CORS. This one works directly from the browser with no proxy needed.

Things I learned building 51 tools

Keyboard shortcuts matter more than I expected.
Adding Ctrl+Enter to run and Ctrl+K to clear on every tool changed the feel completely. Tools become faster to use than a terminal command.

"Load Example" removes the blank-slate problem.
Before I added example buttons, new users would land on a tool, see an empty textarea,and leave. One click to load sample data drops that friction entirely.

History is underrated.
Storing the last 8 inputs in localStorage means you can close a tab and come back to where you were. Implemented with a small useHistory hook and a dropdown — about 60 lines of code,but disproportionately useful.

Static sites + edge functions is a surprisingly good stack for
tool sites.

You get the SEO and performance benefits of static HTML for everything that doesn't need a server, and edge functions for the few things that do. No backend to maintain, no database,scales infinitely on Cloudflare's free tier.

What's next

  • Shareable URLs for all tools (hash-based state, already works in JSON Formatter and Base64)
  • More tools: TOML↔JSON, HTTP Header Analyzer, OpenAPI validator
  • Offline PWA support

If there's a tool you reach for daily that's missing, I'd genuinely like to know — either in the comments here or on the site.

freecodtools.dev