FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
Neon Has a Free Serverless Postgres That Scales to Zero — Branch Your Database Like Git
How-ToWeb Development

Neon Has a Free Serverless Postgres That Scales to Zero — Branch Your Database Like Git

via Dev.to WebdevAlex Spinov3h ago

The Postgres Hosting Problem RDS: $15/month minimum, always running. Supabase: great but opinionated. Self-hosted: backups, updates, scaling — all on you. Neon is serverless Postgres. Scales to zero when idle. Branch your database for development. Free tier: 0.5GB. What Neon Gives You Scale to Zero No traffic? No cost. Your database suspends after 5 minutes of inactivity and cold-starts in ~500ms. Database Branching # Create a branch from production — instant, copy-on-write neonctl branches create --name feature-auth # Each branch gets its own connection string # Test migrations without touching production data Like git branches for your database. Branch from production, test your migration, merge back. Standard Postgres import postgres from ' postgres ' ; const sql = postgres ( process . env . DATABASE_URL ); const users = await sql ` SELECT * FROM users WHERE active = true ` ; It's just Postgres. Every Postgres library works: Prisma, Drizzle, Knex, pg, postgres.js. Serverless Driver

Continue reading on Dev.to Webdev

Opens in a new tab

Read Full Article
2 views

Related Articles

How-To

The Difference between `let`, `var` and `const`

Medium Programming • 4h ago

How-To

Circulation Metrics Framework for Living Systems

Medium Programming • 6h ago

Red Rooms makes online poker as thrilling as its serial killer
How-To

Red Rooms makes online poker as thrilling as its serial killer

The Verge • 9h ago

Don’t Know What Project to Build? Here Are Developer Projects That Actually Make You Better
How-To

Don’t Know What Project to Build? Here Are Developer Projects That Actually Make You Better

Medium Programming • 10h ago

Why Most Developers
Stay Broke
How-To

Why Most Developers Stay Broke

Medium Programming • 12h ago

Discover More Articles