EveryDev.ai
Subscribe
Home
Tools

3,484+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. celld
    celld icon

    celld

    AI Infrastructure
    Featured

    Self-hosted, distributed Durable Objects daemon that runs Cloudflare Workers and Durable Objects on your own machines, with each cell backed by SQLite replicated to an S3-compatible bucket you own.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Free to use, modify, and distribute under the Apache-2.0 license. Self-host on your own infrastructure with your own S3-compatible bucket.

    Engagement

    Available On

    Linux
    CLI
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    AI InfrastructureCloud Computing PlatformsServerless Computing

    Alternatives

    BeamRunPodCerebrium
    Developer
    Deno Land Inc.San Diego, CAEst. 2019$30.9M raised

    Listed Aug 2026

    About celld

    celld is an open-source daemon built by Deno Land Inc. that lets you run Cloudflare Workers and Durable Objects on your own infrastructure. It is licensed under Apache-2.0 and distributed as a 58 MB static binary or Docker container. The project reached v0.1.0 in August 2026 and is actively maintained on GitHub.

    What It Is

    celld brings the Durable Objects programming model — a single-threaded named object with its own private SQLite database — to self-hosted fleets. Each "cell" is the equivalent of a Cloudflare Durable Object: it serves HTTP, holds WebSocket connections, sets alarms, and makes outbound connections. The key difference is that your data lives in an S3-compatible bucket you own, and your Workers code runs on machines you control. The JavaScript API is intentionally compatible with the Cloudflare Workers and Durable Objects surface, so existing Wrangler bundles can be deployed without code changes (within the documented compatibility boundary).

    Architecture: Bucket as Coordinator

    celld's distributed design eliminates the need for a traditional control plane. There is no membership protocol, no failure detector, and no consensus service. Instead:

    • Ownership via compare-and-swap — one atomic write to the bucket grants a node ownership of a cell; no shared scheduler is involved.
    • SQLite + LTX replication — each cell's SQLite database is continuously replicated to the bucket as LTX segments (Litestream's replica format). celld does not acknowledge a write until the data is in the bucket (RPO=0).
    • Stateless nodes — nodes are replaceable. When a cell moves or wakes, its new owner restores the SQLite database from the bucket and resumes execution.
    • Hibernation — idle cells are evicted from memory; a hibernated cell costs nearly zero because it is only an object in S3.

    The runtime embeds V8 and executes Wrangler bundles. Fleet nodes discover each other through bucket leases; there is no join command or fixed membership list.

    Deployment Model

    celld ships as a single binary installable via a curl script or as a Docker image for Linux x86-64 and ARM64. Deploying an application uses celld deploy (which requires esbuild for Worker code) against any S3-compatible bucket — AWS S3, Cloudflare R2, or compatible alternatives. Starting a fleet node requires only pointing the binary at the same bucket with --bucket, --listen, and --advertise flags. Peer authentication uses HMAC with a fleet secret stored in the bucket; the peer port should be placed on a private network or encrypted overlay such as WireGuard or Tailscale.

    Key operational characteristics documented on the project site:

    • ~4 ms to wake a hibernated cell
    • ~90 ms durable write latency (region-local bucket)
    • ~20 s failover after node loss with zero acknowledged writes lost
    • ~1,000 resident cells per 8 GB node at ~4 MB RAM per resident cell
    • Stateless request p50/p99 of 0.2/0.3 ms (loopback, M-series laptop)

    Cloudflare Compatibility and Tradeoffs

    celld targets compatibility with the Cloudflare Workers and Durable Objects APIs so that existing code runs unchanged within the supported surface. The project publishes a dedicated compatibility page listing supported APIs and a limitations page covering the current deployment boundary. The homepage explicitly notes that self-hosting is not automatically more reliable than a managed service — it makes the failure domain explicit and inspectable (your nodes, your bucket provider, your operational choices) rather than eliminating failure.

    Update: v0.1.0

    The latest release is v0.1.0, published on 2026-08-05. The repository was created in April 2025 and has been under active development since. The GitHub repository shows 1,104 stars and 26 forks as of the last crawl. The project notes that conformance tests against the Workers/Durable Objects reference behavior and a deterministic simulation of the distributed protocol under fault injection run before each release. Pull requests are disabled; contributions are accepted as git format-patch attachments sent to the maintainer.

    celld - 1

    Community Discussions

    Be the first to start a conversation about celld

    Share your experience with celld, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Free to use, modify, and distribute under the Apache-2.0 license. Self-host on your own infrastructure with your own S3-compatible bucket.

    • Full celld daemon source code under Apache-2.0
    • Static binary and Docker container
    • Unlimited cells (limited only by your own infrastructure)
    • S3-compatible bucket coordination
    • SQLite replication with RPO=0

    Capabilities

    Key Features

    • Self-hosted Durable Objects compatible with Cloudflare Workers API
    • Each cell backed by its own private SQLite database
    • Continuous SQLite replication to S3-compatible bucket (LTX format)
    • RPO=0: no acknowledged writes lost on node failure
    • Bucket-as-coordinator: no membership protocol, failure detector, or consensus
    • Cell hibernation: inactive cells cost nearly zero (S3 object only)
    • ~20s failover after node loss with zero data loss
    • ~4ms wake time for hibernated cells
    • ~1,000 resident cells per 8 GB node
    • Static binary (58 MB) and Docker container (Linux x86-64 and ARM64)
    • celld deploy command for Wrangler bundle deployment
    • celld diagnose command for fleet health inspection
    • HMAC peer authentication with replay protection
    • Pressure shedding with configurable resident-cell watermarks
    • Compatible with AWS S3, Cloudflare R2, and S3-compatible storage
    • Supports Workers, Durable Objects bindings, and static assets
    • V8 runtime embedded in the daemon
    • WireGuard and Tailscale overlay network support for peer security

    Integrations

    Cloudflare R2
    AWS S3
    S3-compatible object storage
    Cloudflare Workers (API compatibility)
    Wrangler
    esbuild
    Docker
    WireGuard
    Tailscale
    V8
    SQLite
    LTX (Litestream replica format)
    DigitalOcean (example fleet hosting)
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate celld and help others make informed decisions.

    Developer

    Deno Land Inc.

    Deno Land Inc. builds open-source JavaScript and TypeScript runtimes and developer infrastructure. The company created the Deno runtime and maintains projects including celld, a self-hosted distributed Durable Objects daemon. The team brings deep expertise in V8, distributed systems, and server-side JavaScript. Deno Land Inc. publishes its core projects under permissive open-source licenses and accepts contributions via patch email.

    Founded 2019
    San Diego, CA
    $30.9M raised
    85 employees

    Used by

    Slack
    Netlify
    Zee.Dog
    GitHub (indirectly via registry use)
    Read more about Deno Land Inc.
    WebsiteGitHub
    1 tool in directory

    Similar Tools

    Beam icon

    Beam

    AI infrastructure platform for developers to run sandboxes, inference, and training with ultrafast boot times and instant autoscaling.

    RunPod icon

    RunPod

    Cloud GPU platform for building, training, and deploying AI models with serverless infrastructure and instant scaling.

    Cerebrium icon

    Cerebrium

    Serverless AI infrastructure for deploying LLMs, agents, and vision models globally with low latency, zero DevOps, and per-second billing.

    Browse all tools

    Related Topics

    AI Infrastructure

    Infrastructure designed for deploying and running AI models.

    343 tools

    Cloud Computing Platforms

    AI-optimized platforms for cloud computing (AWS, GCP, Azure, etc.).

    55 tools

    Serverless Computing

    AI-enhanced tools for serverless application deployment and management.

    16 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions