realtime_client 1.2.3 icon indicating copy to clipboard operation
realtime_client: ^1.2.3 copied to clipboard

Listens to changes in a PostgreSQL Database and via websockets. This is for usage with Supabase Realtime server.

realtime-dart #

Listens to changes in a PostgreSQL Database and via websockets.

A dart client for Supabase Realtime server.

pub package pub test

Usage #

Creating a Socket connection #

You can set up one connection to be used across the whole app.

import 'package:realtime_client/realtime_client.dart';

var client = RealtimeClient(REALTIME_URL);
client.connect();

Socket Hooks

client.onOpen(() => print('Socket opened.'));
client.onClose((event) => print('Socket closed $event'));
client.onError((error) => print('Socket error: $error'));

Disconnect the socket

Call disconnect() on the socket:

client.disconnect()

Credits #

License #

This repo is licensed under MIT.

55
likes
120
pub points
94%
popularity

Publisher

verified publisher iconsupabase.io

Listens to changes in a PostgreSQL Database and via websockets. This is for usage with Supabase Realtime server.

Homepage

Documentation

Documentation
API reference

License

Icon for licenses.MIT (LICENSE)

Dependencies

collection, meta, web_socket_channel

More

Packages that depend on realtime_client