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

推荐订阅源

WordPress大学
WordPress大学
博客园 - 司徒正美
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
M
MIT News - Artificial intelligence
L
LangChain Blog
aimingoo的专栏
aimingoo的专栏
Engineering at Meta
Engineering at Meta
Martin Fowler
Martin Fowler
H
Help Net Security
B
Blog
Y
Y Combinator Blog
小众软件
小众软件
S
SegmentFault 最新的问题
I
InfoQ
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
D
Docker
博客园 - 【当耐特】
J
Java Code Geeks
阮一峰的网络日志
阮一峰的网络日志

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
From 0 to 20 organic Google clicks: the engineering behin...
Muhaymin Bin Mehmood · 2026-06-16 · via DEV Community
Cover image for From 0 to 20 organic Google clicks: the engineering behind my solo SaaS

Muhaymin Bin Mehmood

A month ago, my solo project batchset.com had basically zero search traffic. This week it crossed 20 organic clicks in a 28-day window and is climbing toward 30 — with $0 in ads.

Tiny numbers, I know. But the direction (15 → 20 → 30) is the point, and it didn't come from luck. It came from a few deliberate engineering decisions. Here's what actually moved the needle, in case it helps another dev shipping a side project.

1. Make the tools work without a server

BatchSet is an image + marketing toolkit. The interesting constraint I set early: anything that can run in the browser, should. No upload, no round-trip, no account.

Here's what that means in practice — all of this runs 100% client-side:

  • Image conversion (JPG/PNG/WebP/GIF/BMP/SVG → WebP/JPG/PNG), single or bulk, parallelized across CPU cores with Web Workers
  • Social media resizer — exact preset dimensions for 8 platforms
  • QR code generator — URL, WiFi, vCard, email → PNG/SVG
  • Barcode generator — EAN-13, UPC-A, Code128 and more
  • PDF ↔ Image — images→PDF and PDF→images, via pdf.js / pdf-lib

The only things that touch a server are the ones that physically can't run in the browser: HEIC/TIFF decoding, fetching image URLs from an uploaded Excel sheet, and link-click analytics.

Two wins fell out of this one decision:

  • Speed — no server latency means the tools feel instant, and fast pages are both a ranking signal and a UX win.
  • A real differentiator — "your files never leave your browser" is something people actually search for, and it's true here.

2. Programmatic SEO for tool + comparison pages

Instead of one generic landing page, every tool gets its own route (/tools/jpg-to-webp, /tools/bulk-image-converter, …) with a unique title, description, and FAQ targeting one keyword cluster each.

Same for comparison pages (/vs/cloudconvert, /vs/tinypng). People literally Google "X vs Y" before picking a tool — so I gave Google a page that answers exactly that query.

3. Structured data on everything

Each tool page ships JSON-LD: BreadcrumbList, SoftwareApplication, FAQPage, and HowTo. The FAQ schema is the cheap win — it can earn rich results and pulls long-tail questions ("can I convert HEIC?", "are my files uploaded?") straight into search.


json
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    { "@type": "Question", "name": "...", "acceptedAnswer": { "@type": "Answer", "text": "..." } }
  ]
}