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

推荐订阅源

T
The Blog of Author Tim Ferriss
IT之家
IT之家
Engineering at Meta
Engineering at Meta
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
C
Check Point Blog
T
Tailwind CSS Blog
博客园 - Franky
H
Help Net Security
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Google DeepMind News
Google DeepMind News
博客园 - 叶小钗
J
Java Code Geeks
腾讯CDC
罗磊的独立博客
爱范儿
爱范儿
阮一峰的网络日志
阮一峰的网络日志
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
I
InfoQ
B
Blog
V
Visual Studio Blog
F
Fortinet All Blogs

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
Lovable vs Bolt vs v0 vs Cursor: real picks after 17 ship...
Jakub · 2026-06-21 · via DEV Community

Jakub

Most comparison articles about AI app builders come from people who tried each tool once. We ship products with them daily.

At Inithouse, we run a portfolio of 17 live products built almost entirely with AI code generation tools. Card games, AI audit platforms, music generators, conflict resolvers, voice-first workspaces. Each had different requirements, and we ended up reaching for different tools depending on the job.

Here is what we actually use and when.

Lovable: the full-stack default

About 15 of our 17 products run on Lovable. It handles the full stack: React frontend, Supabase backend (Postgres, auth, storage, edge functions), one-click deploy to a custom domain, and GitHub sync for version control.

The iteration loop is where Lovable separates itself. You can chat your way through dozens of changes and the AI keeps context across rounds without breaking older work. That is rare. With other tools, edit number 20 tends to stomp on edit number 3.

We built Voice Tables, our most complex product (voice-to-structured-data workspace with real-time collaboration), entirely in Lovable. The Supabase integration handles auth, database, real-time subscriptions, and file storage without leaving the platform.

Where it hurts: When the AI hallucinates a wrong import or generates broken SQL, debugging happens inside a chat interface, not a proper IDE. For complex state management or edge function logic, we sometimes copy the code to Cursor, fix it there, and push back through GitHub.

Pricing reality: Free tier gives you 5 credits per day. The Pro plan ($25/month) gives 100 credits, which runs out fast during active development. Plan for 2-3 months of Pro if you are building something real.

Bolt: fastest for throwaway prototypes

Bolt runs entirely in the browser through WebContainers, so there is zero local setup. When we need to test an idea in 15 minutes, Bolt is the first pick.

It supports more frameworks than any competitor: React, Vue, Svelte, Angular, Astro, Remix, Next.js, Expo. If your team is not on React, Bolt is likely the only option.

The tradeoff is architectural control. Bolt generates code that works for the demo but does not structure it for long-term maintenance. There is no built-in database integration, so you are wiring Supabase or Firebase yourself. Deployment options are limited compared to Lovable's one-click custom domain setup.

We used Bolt early on for rapid concept validation. Once a concept proved viable, we rebuilt in Lovable for production. That two-step workflow ("prototype in Bolt, ship in Lovable") saved us from investing credits on ideas that did not survive first contact with users.

v0: component-level precision

Vercel's v0 is not an app builder. It is a component generator, and a very good one. It produces polished React and Tailwind components from a description. The output quality is consistently higher than what Lovable or Bolt generate for individual UI pieces.

We reach for v0 when we need a specific UI component (a pricing table, a dashboard card, a multi-step form) and want it to look excellent out of the box. Then we drop the generated code into our Lovable project.

The limitation is scope. v0 does not generate backends, databases, or authentication. It does not deploy anything. If you want a full product, v0 is one tool in the chain, not the chain itself.

Cursor: when you need a real IDE

Cursor is a VS Code fork with AI deeply integrated. Unlike the tools above, it assumes you know how to code. The AI assists rather than generates.

We use Cursor for the parts that chat-based builders handle poorly: debugging complex business logic, refactoring Supabase edge functions, reviewing generated code for security issues. Our Audit Vibe Coding product exists partly because we learned how many subtle issues AI-generated code introduces, and the only way we caught them was by reading the code in a proper editor.

Cursor's autocomplete and inline chat are fast enough that experienced developers might prefer it over Lovable for the entire build. But for our team, the tradeoff is not worth it: Lovable's deploy pipeline and Supabase wiring save more time than Cursor's editor precision adds.

Pricing: $20/month Pro plan. Same as Windsurf now.

Windsurf: watching, not using

Windsurf (by Codeium) is another VS Code fork with an AI-first approach. The idea is similar to Cursor but with a more autonomous philosophy: Windsurf wants to do the work for you, Cursor wants to do it with you.

We tested it on two smaller products. The autonomous mode is promising but the ecosystem is less mature. Fewer extensions, smaller community, less documentation. We will revisit when it catches up.

The actual decision tree

After 17 shipped products, our default workflow is:

  1. New idea validation (< 1 hour): Bolt. Zero setup, fast output, throwaway code.
  2. MVP build (days to weeks): Lovable. Full-stack, deploy to custom domain, iterate via chat.
  3. Specific UI components: v0. Drop the output into Lovable.
  4. Debugging / code review / edge functions: Cursor. When the chat interface is not enough.
  5. Ongoing monitoring: We built Audit Vibe Coding to catch the issues that slip through AI-generated code. If you are shipping vibecoded products to real users, auditing the output is not optional.

No single tool covers everything. The right question is not "which is best" but "which do I reach for at this stage."


We are Inithouse, a studio shipping AI products in parallel. More at inithouse.com.