Neon Has Free Serverless PostgreSQL With Git-Like Branching
RDS costs money even when idle. Neon scales to zero — and lets you branch your database like git branches for development.
What Makes Neon Different
- Serverless — scales to zero, pay only when active
- Branching — create database copies in seconds for dev/test
- Autoscaling — scales compute up and down automatically
- PostgreSQL compatible — standard Postgres, any driver works
- Instant restore — point-in-time recovery to any second
- Connection pooling — built-in pgbouncer
Quick Start
# Create a project at console.neon.tech
# Get connection string
# Connect with any Postgres client
psql postgresql://user:pass@ep-cool-name.us-east-2.aws.neon.tech/dbname
# Branch for development
neonctl branches create --name feature-auth
# Full database copy in <1 second!
Use in Code
import { neon } from '@neondatabase/serverless'
const sql = neon(process.env.DATABASE_URL)
const users = await sql`SELECT * FROM users WHERE active = true`
Free Tier
| Resource | Free |
|---|---|
| Storage | 0.5 GB |
| Compute | 191 hours/month |
| Branches | 10 |
| Projects | 1 |
Why Neon Over RDS/Supabase
- Scale to zero — no cost when idle
- Branching — instant DB copies for development
- Serverless driver — works from edge functions over HTTP
- Instant restore — any point in time
- Free tier — 191 compute hours is generous
📧 spinov001@gmail.com — Database architecture consulting
Follow for more database tool reviews.
Top comments (0)