Neon
ELI5 — The Vibe Check
Neon is serverless Postgres — it scales to zero when nobody's using it and wakes up instantly when they do. Like Vercel for databases. You get a real PostgreSQL database with branching (create a copy of your database like a git branch), autoscaling, and a generous free tier. No more paying $50/month for a database that sits idle 90% of the time.
Real Talk
Neon is a serverless PostgreSQL platform that separates compute from storage, enabling scale-to-zero, instant branching, and point-in-time recovery. It uses a custom storage engine that provides copy-on-write database branches (useful for development, testing, and preview environments). Compute auto-scales based on load and suspends during inactivity. It's fully Postgres-compatible and integrates with Vercel, Prisma, and Drizzle ORM.
When You'll Hear This
"Use Neon for the preview environments — each PR gets its own database branch." / "Neon scales to zero on the free tier, so it costs nothing when idle."
Related Terms
Database
A database is like a super-organized filing cabinet for your app's data.
PlanetScale
PlanetScale is MySQL on steroids with Git-like database branching. Want to test a schema change?
PostgreSQL
PostgreSQL (just say 'Postgres') is the Swiss Army knife of databases.
Serverless
Serverless doesn't mean there are no servers — it means YOU don't have to think about servers. Someone else manages them, scales them, and patches them.
Supabase
Supabase is Firebase but built on real Postgres SQL. You get a database, auth, file storage, and real-time updates all in one.