Why I Built This
As developers, we constantly reach for small online tools — format some JSON, test a regex, generate a UUID, compress an image. But each tool is on a different website, many with ads, popups, and dark patterns.
I decided to build one site with all of them: ToolPilot.
The Rules I Set
- Everything runs in the browser — no server processing, no data uploads
- No signup — just open and use
- No frameworks — pure HTML, CSS, and JavaScript
- Fast — every tool loads instantly
What's Inside (87 tools)
Developer Tools
- JSON Formatter — format, validate, minify
- Regex Tester — real-time matching with explanation
- JWT Decoder — decode without sending tokens to a server
- CSS Flexbox Generator — visual flexbox builder
- CSS Grid Generator — visual grid layout builder
- Diff Checker — compare text side by side
Image Tools
- Image Compressor — compress without uploading
- Image Resizer — resize with presets for social media
- SVG to PNG — convert with custom dimensions
Security Tools
- Password Generator — cryptographically secure
- Hash Generator — MD5, SHA-1, SHA-256, SHA-512
- Text Encryptor — AES-256-GCM encryption
And 70+ more...
Check out the full list at gotoolpilot.com.
Tech Decisions
Why no framework? Each tool is a standalone HTML page. No shared state, no routing needed. A framework would add complexity without benefit. Load time is near-zero.
Why client-side only? Privacy. When you compress an image or decode a JWT, that data should stay on YOUR machine. There's no technical reason to send it to a server.
Why Cloudflare Pages? Free hosting with global CDN and automatic HTTPS.
What I Learned
- Simple tech scales — Pure HTML/CSS/JS serves millions of page views without infrastructure costs
- Privacy is a feature — Users appreciate knowing their data stays local
- One tool at a time — Building 87 tools sounds overwhelming, but doing 5 per week makes it manageable
- SEO takes patience — Organic traffic grows slowly, but each tool is a new landing page
What's Next
- More tools based on user requests
- Blog content for SEO
- Possibly premium features for power users
Try it out: gotoolpilot.com
I'd love to hear which tools you use most and what's missing!
Top comments (0)