README.md
Scalable real-time messaging server in a language-agnostic way.
Centrifugo is an open-source scalable real-time messaging server. It instantly delivers messages to application online users connected over supported transports (WebSocket, HTTP-streaming, Server-Sent Events (aka EventSource), GRPC, WebTransport). Centrifugo has the concept of channel subscriptions – so it's a user-facing PUB/SUB server.
Centrifugo is language-agnostic and can be used to build chat apps, live comments, multiplayer games, real-time data visualizations, collaborative tools, AI streaming responses, etc. in combination with any backend. It is well suited for modern architectures and allows decoupling the business logic from the real-time transport layer.
The core idea of Centrifugo is simple – it's a PUB/SUB server on top of modern real-time transports:
Your backend communicates with Centrifugo over a simple HTTP or GRPC API to publish messages into channels, while clients subscribe to those channels using one of the official SDKs (or the unidirectional approach with no SDK dependency).
Spin up Centrifugo with its embedded admin UI using Docker:
docker run -it --rm -p 8000:8000 centrifugo/centrifugo:latest centrifugo \
--client.insecure --admin.enabled --admin.insecure
# ^ insecure flags: for local trial only, never use in production
Then open http://localhost:8000 to reach the admin UI, where you can watch live connections and publish messages into channels. The insecure flags above remove authentication for a frictionless local trial only – never use them in production.
For native binaries, Homebrew, packages, and production configuration see the installation instructions, and follow the quickstart tutorial to connect your first client.
The hard part is to make the PUB/SUB concept production-ready, efficient, flexible and available from different application environments. Centrifugo is a mature solution that already helped many projects with adding real-time features and scaling towards many concurrent connections. It provides a set of features not available in other open-source solutions in the area:
Official SDKs wrap Centrifugo's bidirectional protocol and handle reconnects, subscription state, message recovery, and more across platforms:
| Platform / Language | SDK |
|---|---|
| JavaScript (browser, Node.js, React Native) | centrifuge-js |
| Dart / Flutter (mobile and web) | centrifuge-dart |
| Swift / native iOS | centrifuge-swift |
| Java (Android, JVM) | centrifuge-java |
| Python (asyncio) | centrifuge-python |
| Go | centrifuge-go |
| .NET / MAUI / Unity [WIP] | centrifuge-csharp |
For simple use cases Centrifugo also supports a unidirectional approach (WebSocket, SSE, HTTP-streaming, GRPC) that needs no SDK – any standard client for the transport works. See the transports overview and the client protocol spec for details.
Found a bug or have an idea? Open an issue. Want to contribute? See CONTRIBUTING.md.
This repository is hosted by packagecloud.io.
<a href="https://packagecloud.io/"></a>
Also thanks to JetBrains for supporting OSS (most of the code here written in Goland):
<a href="https://www.jetbrains.com/"></a>