If your app uses Supabase Realtime to listen for database changes (via e.g. Stream in the Supabase Flutter client library), it’s fairly simple to obtain the same behavior using PowerSync. Postgres changes are constantly streamed to the PowerSync Service via the logical replication publication. When the PowerSync Client SDK is online, the behavior is as follows:Documentation Index
Fetch the complete documentation index at: https://docs.powersync.com/llms.txt
Use this file to discover all available pages before exploring further.
- Data changes are streamed from the PowerSync Service to the SDK client over HTTPS
- Using the
watch()API, client-side SQLite database changes can be streamed to your app UI
watch() can be found below