Realtime
Send and receive messages to connected clients.
Supabase provides a globally distributed cluster of Realtime servers that enable the following functionality:
- Broadcast: Send ephemeral messages from client to clients with low latency.
- Presence: Track and synchronize shared state between clients.
- Postgres Changes: Listen to Postgres database changes and send them to authorized clients.
Realtime API
By default Realtime is disabled on your database. Let's turn on Realtime for a todos
table.
From the client, we can listen to any new data that is inserted into the todos
table:
Use subscribe() to listen to database changes.
The Realtime API works through PostgreSQL's replication functionality. Postgres sends database changes to a publication
called supabase_realtime
, and by managing this publication you can control which data is broadcast.
Examples
Resources
Find the source code and documentation in the Supabase GitHub repository.