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

推荐订阅源

J
Java Code Geeks
腾讯CDC
Jina AI
Jina AI
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
小众软件
小众软件
M
MIT News - Artificial intelligence
MyScale Blog
MyScale Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
月光博客
月光博客
L
LangChain Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
C
Check Point Blog
U
Unit 42
人人都是产品经理
人人都是产品经理

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
I got tired of QR code generators gatekeeping SVG exports...
Abdessamad Bettal · 2026-06-19 · via DEV Community

Here's a small thing that's been bugging me for a while: you need a QR code, you Google "QR code generator," you land on one of the usual suspects, you customize your colors and add a logo, and then — right as you go to download — you hit a wall. PNG export is free. SVG, the format you actually need for a print job or a vector pipeline, is locked behind a paid plan. Sometimes there's a "create an account first" gate too, just for good measure.

None of this is actually expensive to provide. Generating a QR code is cheap, deterministic, and well-understood. The friction is a business model, not a technical constraint. So I built QrFast.io — a QR code generator with no signup, no paywall on exports, and full SVG/PNG downloads from the first interaction.

What it does

QrFast is intentionally narrow in scope: you give it data, you customize the look, you download a file. That's the whole loop.

No login, no account, no saved history. Open the page, generate, download, done. There's nothing to sign up for and nothing tracking your generation history.
Multiple data formats, not just plain URLs — WiFi credentials, vCards, WhatsApp deep links, Bitcoin payment URIs, and calendar events are all supported as first-class input types, each with its own structured form instead of forcing you to hand-format a string.
Full visual customization — foreground/background colors, dot styles, and logo embedding, all rendered live as you type. No "generate then preview" round trip.
SVG and PNG exports, both free, both immediate. SVG specifically matters here because raster QR codes get blurry the moment you scale them for a banner, a poster, or a packaging insert. Vector output means the code stays crisp at any size, which matters a lot more for QR codes than people expect — a soft edge on a finder pattern is exactly the kind of thing that breaks a scanner.

Why I built it this way

The honest answer is that QR generation is a solved problem from an algorithmic standpoint — error correction levels, module placement, quiet zones, all standard. The differentiation isn't in generating a QR code, it's in not getting in the user's way while they do it. So the design constraints I set for myself were:

Every interaction should feel instant. No full-page reloads when you change a color or switch from URL to WiFi mode. The preview updates in place.
Nothing should require an account. If a tool's core function is "take input, produce file," account creation is pure overhead for the user and a data liability for me.
Vector output isn't a premium feature. It's table stakes for anyone using this for print.

The stack, for the curious

The frontend is Nuxt 3, the backend is Laravel. Nuxt handles the reactive form state and live SVG preview — the QR rendering recalculates client-side as you type, so there's no network round trip just to see what a color change looks like. Laravel sits behind it for the heavier lifting: persistent format validation, any server-rendered generation paths, and keeping the whole thing fast enough that SSR doesn't become a bottleneck.

One nuance I went back and forth on: how much of the QR encoding logic should live client-side versus server-side. Client-side keeps the live preview snappy and removes a network hop, but you end up duplicating validation logic (e.g., WiFi credential escaping, vCard field formatting) on both ends if you're not careful. I landed on doing the visual rendering and live preview client-side, with format-specific payload construction validated again server-side before the final export — mostly to make sure malformed input never makes it into a generated file, especially for formats like vCard where a stray special character can produce a QR code that looks fine but fails to parse on scan.

What's next / where I'd love feedback

QrFast is live now and free to use at qrfast.io. It's still early, and there are a few things I'm actively thinking about:

Rendering edge cases — very dense payloads (long URLs, full vCards with multiple fields) push toward higher QR versions with smaller modules, and I want to make sure the dot-style customization doesn't compromise scannability at that density.
UI/UX for format switching — right now each format (WiFi, vCard, WhatsApp, Bitcoin, Event) has its own form, and I'm curious whether that's intuitive enough or whether it needs better signposting for someone who lands on the URL tab by default and doesn't realize the other formats exist.
Logo embedding and error correction — embedding a logo eats into the QR's effective error correction budget, and I'd rather over-warn users about logo size than ship a code that fails to scan in the wild.

If you try it and have thoughts — on the rendering quality, the UX, or anything that broke — I'd genuinely like to hear it. The whole point of building it free and frictionless was to get it in front of more people who'd actually use it, so real feedback from real use cases is the most useful thing anyone could send my way right now.