Build multiplayer apps in a day

No more hacking together solutions, wrestling with exotic APIs, or struggling with edge cases. Start shipping multiplayer apps that just work.

How it works

Simple infrastructure for your multi-user features

Multi-user apps are just single-user apps with multi-user networking. Central provides the building blocks so you can focus on building your core features. Instead of onboarding your team into exotic APIs, you can put together your multi-user app in a day by embedding simple packages.

Why Central

Modules that grow with your product

No need to worry about handling memory limits or errors from edge cases. Central manages the hard stuff. Add front-end handler and assign backend worker to Central easily no matter your product maturity.

1
2
3
4
5
6
7
8
const object = centralClient
    .handleIncomingOp(response)
    .then(op => op);

object.color = "#141414"

await centralClient
    .setObject(object);