📄Encrypted, on-demand documentation backups with Plakar + Cloudflare R2

Quickstart

Watch the 2.0 launch tour, then ship your first edge function.

Placeholder video. Swap in your product walkthrough.

Scaffold a project and run it live:

nimbus init
nimbus run --watch

Add an edge function, a small handler that runs at every region:

// functions/hello.ts
import type { EdgeRequest } from '@nimbus/sdk'

export default function (req: EdgeRequest) {
  return new Response(`hello from ${req.region}`)
}

Deploy it everywhere with one command:

nimbus deploy --remote edge

Or from your own code:

from nimbus import Nimbus

nimbus = Nimbus(key=os.environ["NIMBUS_KEY"])
nimbus.deploy(source="docs", functions="./functions", strategy="drain")