How I Built 162+ Free Online Tools with Next.js (And Why I Did It)
I kept hitting the same wall: every time I needed a quick utilityโmerge a PDF, format some JSON, test a regexโI'd land on a site that either:
Required signup just to process 3 files
Uploaded my data to their servers (privacy red flag)
Hit me with a paywall after 2 uses
Looked like it was designed in 2003
So I built Craftisle to fix that.
What It Is
Craftisle is a free, browser-based toolkit with 162+ utilities and a curated directory of 16,000+ free & open-source software across 200+ categories.
Everything runs 100% in your browserโno uploads, no registration, no tracking.
The Toolbox (162+ and counting)
๐ PDF Tools
Merge, split, compress, convert, rotate, watermark, extract pages, add password.
๐ผ๏ธ Image Tools
Compress, convert, resize, crop, upscale (AI), background removal, watermark removal, ID photo maker.
๐จโ๐ป Developer Tools
Regex tester/visualizer with real-time highlighting
JSON formatter/validator
HTML editor with preview
Cron expression generator & parser
JWT decoder
๐ Encryption Tools
AES/DES encryption, Bcrypt hash, MD5/SHA256 hash, Base64/32/58 encode/decode.
๐ Format Converters
CSV โ JSON โ XML โ YAML, Markdown โ HTML, SQL โ JSON.
๐ Text Tools
Case converter (camelCase, snake_case, PascalCaseโฆ), diff checker, palindrome checker, Unicode tools.
๐ฒ Generators
QR code generator, UUID generator, random string, Lorem Ipsum, handwriting animation.
โฑ๏ธ Time & Network Tools
Unix timestamp converter, Cron parser, IP calculator, User-Agent parser.
๐ฎ Utilities
Coin flip, countdown timer, Pomodoro timer, scoreboard, stopwatch, lucky wheel.
The Architecture
Stack:
Next.js 16 (App Router) โ SSR/SSG hybrid
Tailwind CSS โ rapid UI iteration
Vercel โ deployment & edge functions
Prisma + PostgreSQL โ software directory backend
i18next โ multi-language support
Key design decision: All tool processing happens client-side using Web APIs (FileReader, Canvas, Web Workers). This means:
โ
Zero server cost for processing
โ
User files never leave their device
โ
Works offline (PWA-ready)
The Software Directory
In addition to the tools, I built a curated directory of 16,000+ free & open-source software across 200+ categories:
AI tools
Privacy-focused alternatives
Developer tools
Design resources
Self-hosted solutions
Updated weekly. Each entry includes alternatives & comparisons.
๐ Browse the directory
Lessons Learned
Client-side processing is underrated
Most "online tools" are just wrappers around server-side scripts. Moving processing to the browser eliminates privacy concerns and server costs.Free doesn't mean low quality
You can build professional-grade tools without paywalls. Ads? Optional. Tracking? None.Developer experience matters
Regex tester with real-time visual feedback > static form. JSON formatter with tree view > raw text.
Try It
๐ craftisle.com
No signup. No upload. No paywall. Just tools that work.
If you find a missing tool or have feedback, open an issue on GitHub (repo coming soon).












