#DevToolbox
Just shipped 3 free browser-based tool suites. No uploads, no servers — your files stay on YOUR device.

DevToolbox: 10 dev utilities
Parchment: 5 PDF tools
ImageToolkit: 5 image tools

All free. All private. All open source.

https://dannycranmer.github.io/devtoolbox/
DevToolbox — Free Developer Tools
dannycranmer.github.io
March 19, 2026 at 7:35 PM
New tools just shipped on DevToolbox + Parchment:

• JS & CSS Minifier/Beautifier
• Extract PDF Pages

All free, no signup, runs in your browser. Files never leave your device.

https://dannycranmer.github.io/devtoolbox/
https://dannycranmer.github.io/parchment/
DevToolbox — Free Developer Tools
dannycranmer.github.io
March 20, 2026 at 1:34 PM
Laravel Devtoolbox: Your Swiss Army Knife Artisan CLI posted by @ylynfatt.bsky.social laravel-news.com/laravel-devt...
Laravel Devtoolbox: Your Swiss Army Knife Artisan CLI - Laravel News
Swiss-army artisan CLI for Laravel — Scan, inspect, debug, and explore every aspect of your Laravel application from the command line.
laravel-news.com
August 18, 2025 at 11:48 PM
18 developer tools. Zero server calls. Your code stays on your device.

JWT decoder, JSON formatter, Base64, regex tester, hash generator, CSS/JS minifier, and more — all running in your browser.

Free. No signup. No tracking. Works offline.

https://dannycranmer.github.io/devtoolbox/
DevToolbox — Free Browser-Based Dev Tools
dannycranmer.github.io
March 20, 2026 at 8:39 PM
@baldbeardedbuilder.com has some stuff in his devtoolbox module
devtoolbox/src/Export/Git/Invoke-Git.ps1 at main · michaeljolley/devtoolbox
A PowerShell module that enables software developers to speed up their CLI workflow. - michaeljolley/devtoolbox
github.com
January 28, 2025 at 8:15 PM
📦 grazulex/laravel-devtoolbox v1.7.0

Swiss-army artisan CLI for Laravel — Scan, inspect, debug, and explore every aspect of your Laravel application from the command line.

🔗 https://github.com/Grazulex/laravel-devtoolbox
September 17, 2026 at 8:22 PM
Meet Laravel Devtoolbox — your Swiss-Army artisan CLI! 🇨🇭🛠️ Created by Jean-Marc Strauven, it helps analyze models, routes, services, SQL queries, env files & more. Perfect for onboarding, CI/CD gates, and app health checks.

Code smarter, ship faster. #Laravel #DevTools #PHP
September 7, 2025 at 10:11 AM
🔧 I built a free developer toolbox with 10 tools — JSON formatter, Base64 encoder, JWT decoder, regex tester, and more.

No ads. No tracking. Runs entirely in your browser.

https://dannycranmer.github.io/devtoolbox/
DevToolbox — Free Online Developer Tools
dannycranmer.github.io
March 19, 2026 at 8:33 PM
📦 grazulex/laravel-devtoolbox v1.6.0

Swiss-army artisan CLI for Laravel — Scan, inspect, debug, and explore every aspect of your Laravel application from the command line.

🔗 https://github.com/Grazulex/laravel-devtoolbox
September 17, 2026 at 1:29 AM
Matt Ruwe presents 'Uncovering Hidden Gems in .NET: Boost Your Development Toolbox' July 25th at Nebraska.Code().

nebraskacode.amegala.com

#DotNet #DevToolbox #Software #Nebraska #SoftwareCraftsmanship #TechConference #Kiewit #SoftwareDevelopment #Nebraska #July2025
June 18, 2025 at 5:53 PM
I Caught a Dev Tool Stealing My Data — So I Built 7 Alternatives That Make Zero Network Calls
DevToolBox — 7 developer utilities, zero network requests Last month I was debugging an API integration and pasted a response containing auth tokens into a popular online JSON formatter. Out of habit, I had DevTools open. I watched it fire off a POST request to some analytics endpoint — with my pasted content in the body. That was my wake-up call. These "free tools" aren't free. You're paying with your data. ## So I Built My Own **DevToolBox** — 7 developer utilities where the processing is verifiably client-side. Not "trust us, we don't store it." Actually zero network calls. Open your Network tab while using any tool. Nothing fires. **Live:** https://devtoolbox-henna-three.vercel.app ## The Tools # | Tool | What It Does ---|---|--- 1 | JSON Formatter | Format, minify, validate. Custom indentation. 2 | Regex Tester | Real-time highlighting. Pattern library. Flag toggles. 3 | Base64 | Encode/decode with proper UTF-8 (most tools break on emojis). 4 | JWT Decoder | Header + payload + expiry check. Color-coded. 5 | Hash Generator | MD5, SHA-1, SHA-256, SHA-512. Uses Web Crypto API. 6 | URL Encoder | encodeURI vs encodeURIComponent modes. 7 | Color Converter | HEX ↔ RGB ↔ HSL with live preview swatch. ## Why "Zero Network Calls" Matters Think about what you paste into online tools: * API responses with auth tokens * JWT tokens from production systems * Base64-encoded credentials * Internal URLs and endpoints Every one of those is a potential security incident if it ends up in someone's analytics pipeline. ## The Technical Stack Framework: Next.js 14 (App Router, static generation) Language: TypeScript (strict) Styling: Tailwind CSS Hosting: Vercel free tier Monthly cost: $0 Key architectural decisions: 1. **All tool logic is pure JavaScript** — no external API calls for any computation 2. **Static generation** — every page is pre-rendered HTML, served from edge CDN 3. **Web Crypto API for hashing** — browser-native, no third-party crypto libraries 4. **PWA manifest** — installable, works offline after first load ## The SEO Strategy (for fellow builders) Each tool targets a specific search keyword: Tool | Target Keyword | Monthly Volume ---|---|--- JSON Formatter | "json formatter online" | ~90K Regex Tester | "regex tester" | ~60K Base64 | "base64 encode" | ~40K JWT Decoder | "jwt decoder" | ~30K Hash Generator | "sha256 hash generator" | ~20K Each page has: * Unique title + meta description targeting that keyword * JSON-LD structured data (WebApplication schema) * Auto-generated Open Graph image * Canonical URL * Breadcrumb schema The thesis: rank for long-tail dev tool queries → free organic traffic → monetize with non-intrusive ads. ## What I Learned 1. **Privacy is a feature, not just ethics.** People actively search for "json formatter no tracking" and similar queries. 2. **Client-side only = infinite scalability at $0.** No matter how much traffic hits this, Vercel's edge network handles it. No Lambda cold starts, no database connections, no scaling concerns. 3. **One tool per page is the correct SEO architecture.** Don't build a single-page tool collection. Each page should target one keyword independently. 4. **PWA installability matters.** Once someone installs it, they bypass search entirely for repeat usage. Direct traffic is the best traffic. ## What's Next Adding weekly based on community requests: * Cron Expression Builder * Unix Timestamp Converter * JSON Diff Viewer * Markdown Previewer ## Try It https://devtoolbox-henna-three.vercel.app Open DevTools → Network tab → use any tool → verify zero requests yourself. **What dev tool do you use where you've wondered "where does my data go?"** I'll build a zero-trust version of whatever gets the most engagement here.
dev.to
July 10, 2026 at 8:10 PM
DevToolbox:轻量级Chrome扩展提升开发者NPM使用体验

https://qian.cx/posts/6ED5DCD6-F66A-4E6D-B99A-09954686D3B7
December 9, 2025 at 12:55 AM
📦 grazulex/laravel-devtoolbox v1.5.0

Swiss-army artisan CLI for Laravel — Scan, inspect, debug, and explore every aspect of your Laravel application from the command line.

🔗 https://github.com/Grazulex/laravel-devtoolbox
September 3, 2025 at 1:06 PM
📦 grazulex/laravel-devtoolbox v1.2.0

Swiss-army artisan CLI for Laravel — Scan, inspect, debug, and explore every aspect of your Laravel application from the command line.

🔗 https://github.com/Grazulex/laravel-devtoolbox
July 29, 2025 at 7:59 PM
📦 grazulex/laravel-devtoolbox v1.0.0

Swiss-army artisan CLI for Laravel — Scan, inspect, debug, and explore every aspect of your Laravel application from the command line.

🔗 https://github.com/Grazulex/laravel-devtoolbox
July 26, 2025 at 2:33 AM
Your JWT tokens contain sensitive data. Why send them to someone else's server to decode?

Our JWT Decoder runs 100% in your browser. Paste, decode, done. Nothing uploaded.

https://dannycranmer.github.io/devtoolbox/jwt-decoder.html
DevToolbox JWT Decoder — Client-Side JWT Debugging
dannycranmer.github.io
March 21, 2026 at 12:23 AM
New tool: Cron Expression Parser

Paste any cron expression → get plain-English explanation + next 5 run times. Standard 5-field and extended 6-field with seconds.

No server, no signup — runs entirely in your browser.

https://dannycranmer.github.io/devtoolbox/cron-parser.html
March 21, 2026 at 12:04 AM
Built an AI agent that runs a news site autonomously. Discovers interesting stories, writes articles, publishes daily. No human editors.

Hit shuffle for a random story — from the same project as DevToolbox, Parchment & ImageToolkit.
Shuffle — Random interesting stories by AI
shuffle-news.netlify.app
March 20, 2026 at 10:27 PM