Teck Mill

NebulaDB v0.6.0 Cumulus - One database. Every runtime. Zero servers.

by•
NebulaDB v0.6.0 "Cumulus" brings the database to the cloud & edge — with 14 pluggable storage backends spanning browser (IndexedDB, LocalStorage), server (PostgreSQL, MySQL, MongoDB, Redis, SQLite), and edge/serverless (Cloudflare D1, Deno KV, Vercel KV, AWS Lambda).

Add a comment

Replies

Best
Teck Mill
Maker
📌
🚀 NebulaDB v0.6.0 "Cumulus" is live!

> After months of work, we're shipping the biggest update yet — 40 packages published, cloud & edge adapters (Cloudflare D1, Deno KV, Vercel KV, AWS Lambda), a new hybrid adapter for multi-layer fallback, and a full website redesign.

## What makes NebulaDB different?

- One API, 14 backends — swap from Memory → SQLite → Postgres without changing code
- Reactive by default — live queries push updates to your UI automatically
- Runs literally everywhere — browser, Node, Deno, Cloudflare, Vercel, AWS
- Plugin ecosystem — encryption, audit, backup, sync, validation, 12 total

We started this to solve the "which database do I use?" problem in modern apps. Now it's one answer for every environment.

## Try it in 30 seconds

```ts
import { createDatabase } from '@nebula-db/nebula-db';

const db = createDatabase();
const users = db.collection('users');

await users.insert({ name: 'Alice', age: 30 });

const result = await users.find({
  age: { $gt: 25 }
});
npm install @nebula-db/nebula-db