Install Now

What is Membrane?

Stateful serverless TypeScript for internal tools.

FEATURES
EXAMPLES
durable programs
Programs deployed to Membrane are durable. There's no need to store data in a database because the entire state of your program (i.e. the JS heap) is continually and efficiently persisted.
To keep data around, just put it in the state object and that's it!
Promises can be await'ed indefinitely without worrying about execution timeouts.
Keep long-lived values in state.
import { state } from "membrane";
state.notes = state.notes ?? []
export async function saveNote({ args }) {
  state.notes.push(args.note);
}



What is Membrane?

Membrane is a hosted TypeScript service specifically designed to build automation tools and simplify interaction with APIs.

FEATURES
EXAMPLES
Features Walkthrough
In this video we discuss 3 of the most important features of Membrane: Durability, The Graph, and Observability.
Clickable poster of the Features Walkthrough video
Communication


Enter your email for occasional updates