🚀 Now in Private Beta

Scale Cloudflare D1
Beyond the Limits.

The first distributed SQL orchestrator that runs entirely inside your Cloudflare account. Break the 10GB limit with zero-trust architecture.

Quick Start

terminal
$ npm install @lulaedge/client
import
{ LulaClient }
from
'@lulaedge/client'
;

// Initialize the Mediator
const
lula =
new
LulaClient
({ apiKey:
'YOUR_API_KEY'
})
;

// Perform a distributed JOIN across two physical D1 databases
const
results =
await
lula.
query
(`
SELECT u.name, o.product, o.amount
FROM d1_users_eu u
JOIN d1_orders_global o ON u.id = o.user_id
WHERE o.amount > 1000
`)
;

Why LulaEdge?

🔗

Cross-Shard JOINs

Query multiple D1 databases simultaneously. Our engine compiles your SQL into an execution plan that merges data securely at the edge.

🗄️

Infinite Storage

Forget the 10GB limit. By horizontally sharding your data across hundreds of D1 instances, LulaEdge allows your database to grow limitlessly.

🔒

Your Account, Your Data

Zero-Trust Architecture. The orchestration runs within your own Cloudflare account. Raw data never leaves your infrastructure, ensuring full GDPR compliance.

Edge-Native Engine

Built entirely on Cloudflare Workers. Execution plans are distributed to the node closest to your user, ensuring sub-20ms global latency.

Built specifically for the

☁️ Cloudflare Workers Ecosystem