Skip to content

// erlang-inspired · webassembly · rust

RUSMAn Erlang-inspired WebAssembly runtime in Rust

Isolated lightweight processes, fault tolerance, per-actor sandboxing, and secure clusters you can hook into live — on WebAssembly.

~2.4M
spawns / sec
1 : 1
process : sandbox
deny
by default
// the model
01

Processes as Wasm instances

Each process is an isolated Wasm instance — own stack, heap, syscalls, and permissions. One crash can never corrupt another.

02

Write blocking code, get async

Wasmtime fibers suspend a guest’s “blocking” call while the host awaits. Millions can wait for almost nothing.

03

Massive, fair concurrency

Tokio tasks multiplexed over a few threads, with epoch interruption for BEAM-like fairness. ~2.4M spawns/sec.

04

Fault tolerance

Traps become process exits; links and monitors propagate failure so supervisors restart exactly what broke.

05

The OTP core stands alone

Processes, mailboxes, links, and supervisors — implemented as a runtime-agnostic core.

06

Default-deny capabilities

Every process gets nothing unless granted — capabilities are explicit, scoped, revocable.

MIT licensed