Zero dependencies
The whole library is built on the standard library alone. npm install brings exactly one package.
Typed actors, supervision, behaviors, a multi-core runtime, and remoting across nodes. Zero dependencies. No locks, just messages.
Runtime
An actor owns private state and a mailbox. The runtime delivers one message at a time, so that state needs no lock.
Networking
Look up, spawn, and message actors on another node. TLS encrypts the carrier when you need it; enabling it hinders performance versus plaintext.
The whole library is built on the standard library alone. npm install brings exactly one package.