mercure_client 1.1.0 copy "mercure_client: ^1.1.0" to clipboard
mercure_client: ^1.1.0 copied to clipboard

Provide a quick way to publish and consume messages on Mercure

The features #

Provide a quick way to consume messages on Mercure.

Consuming messages #

import 'package:mercure_client/mercure_client.dart';

main() async {
  final Mercure mercure = Mercure(
    url: 'http://example.com/.well-known/mercure', // your mercure hub url
    topics: ['/books/{id}'], // your mercure topics
    token: 'your_jwt_token', // Bearer authorization
    lastEventId: 'last_event_id', // in case your stored last recieved event
  );

  final subscription = mercure.listen((event) {
    print(event.data);
  });
}
8
likes
120
pub points
73%
popularity

Publisher

verified publisherherve-guigoz.com

Provide a quick way to publish and consume messages on Mercure

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

http

More

Packages that depend on mercure_client