LavaFlow Streams
EdgeSQL — Powered by Cloudflare D1

The edge database
that outperforms everything.

Sub-10ms globally. SQLite-compatible. Drizzle-ready. No connection pools, no cold starts, no limits.

p99 latency< 8ms
edge nodes312+
authWeb Crypto
uptime99.99%
Drizzle / Prismanative
Live architecture
p99 <8ms·req/s ↑

Your App

Next.js / React

LavaFlow SDK

Web Crypto signing

CF Worker

Edge runtime

D1 EdgeSQL

Cloudflare D1

Edge Replicas

300+ PoPs global

Query

Provision in seconds

terminal

Connect instantly

js
import { createClient } from '@lavaflow/client'

const db = createClient({
  apiKey: process.env.LAVAFLOW_SECRET,
  database: 'my-app',
})

// Drizzle ORM — drop-in compatible
import { drizzle } from 'drizzle-orm/lavaflow'
export const drizzleDb = drizzle(db)

// Query the edge
const { results } = await db.query(
  "SELECT * FROM users LIMIT 10"
)
Drizzle ORM
Prisma
SQLAlchemy
Kysely
Knex.js
REST / HTTP

Free tier available. No credit card required.

1
2
3
4