Two weeks ago, I launched tool.teamzlab.com with 1,700+ browser-based tools. No backend. No signups. No data collection. Everything runs client-side.
Here's what happened, what I learned, and the tools people actually use.
The stack
- Pure HTML/CSS/JS — no React, no Next.js, no build step
- GitHub Pages — free hosting, zero server costs
- CSS custom properties — one design system, dark/light mode across 1,700 pages
- Chrome AI + Transformers.js — AI features that run in the browser, no API keys
- Pre-commit hooks — auto-rebuild search index, sitemap, SEO validation on every commit
Total monthly cost: $0
What surprised me
Bing sends more traffic than Google. After 2 weeks, Bing organic is my #2 traffic source (530 sessions/week). Google is still warming up. If you're building tools, don't ignore Bing Webmaster Tools and IndexNow.
People spend 3+ minutes on tools that generate something. My QR Card Generator averages 112 seconds per session. The Cheque Book Maker hits 151 seconds. Calculators get 6 seconds. Lesson: build generators, not just calculators.
Facebook referral traffic converts. People share their generated cards/images back to Facebook, which drives more users. Viral loop without trying.
10 tools developers will actually use
AI Background Remover — ML-powered, runs locally via Transformers.js. No upload to any server.
DNS Leak Test — check if your VPN is actually protecting your DNS queries.
JSON Formatter — paste messy JSON, get formatted output. Syntax highlighting included.
Regex Tester — test regex patterns with real-time match highlighting.
Base64 Encoder/Decoder — encode/decode text and files instantly.
JWT Decoder — paste a JWT, see the decoded header and payload. No server involved.
Cron Expression Generator — build cron expressions visually with plain English descriptions.
Git Command Generator — describe what you want to do, get the git command.
Photo to Pencil Sketch — convert any photo to a pencil sketch drawing using canvas filters.
Signature Font Preview — type your name, see it in 20+ signature-style fonts. Download as PNG.
The automation behind it
Every commit triggers:
- Search index rebuild (1,700+ tools searchable)
- Sitemap regeneration (pinged to Google + Bing)
- JSON-LD schema injection (BreadcrumbList, FAQPage, WebApplication)
- SEO validation (title length, meta description, keyword density)
- IndexNow submission (instant Bing indexing)
- Runtime QA in headless Chromium
22 automated checks prevent broken deploys. Zero manual SEO work.
What I'd do differently
- Start with 10 high-quality tools, not 1,700. Depth beats breadth for SEO. Google hasn't fully crawled everything yet.
- Build generators first. They get 20x more engagement than calculators.
- Add share buttons from day one. Social sharing creates backlinks naturally.
Try it
The whole site is at tool.teamzlab.com. Search works across all 1,700+ tools. Everything is free, private, and runs in your browser.
If you're a developer building something similar, happy to share the pre-commit hook setup and automation approach — just drop a comment.
Built by Teamz Lab. If you find a tool useful, sharing it is the best way to support the project.
Originally published at https://tool.teamzlab.com
Top comments (0)