adonis_websok 1.0.3 copy "adonis_websok: ^1.0.3" to clipboard
adonis_websok: ^1.0.3 copied to clipboard

Adonis (adonisjs) high level web sockets. Implements the websocket protocol specified by adonisjs.

adonis_websok #

A high level adonisjs websockets implementation for dart, flutter and web.

Getting Started #

/// For HTML:
/// import 'package:adonis_websok/html.dart';
///
/// For IO (Flutter, Dart, etc.)
import 'package:adonis_websok/io.dart';

void main() async {
  // Create a websocket connection and attach a JWT to it.
  // For HTML: IOAdonisWebsok -> HTMLAdonisWebsok
  final socket = IOAdonisWebsok(host: '192.168.0.100', port: 3333)
    ..withJwtToken('XXXXXXX');
  // Connect to the socket and await for response from the adonis server.
  await socket.connect();
  // Subscribe to the 'disponible' topic.
  final disponible = await socket.subscribe('disponible');
  // Set a callback to execute when a new event comes by.
  disponible.on('canvi', (data) => print('canvi: ${data.toString()}'));
  // To stop the listener, just perform disponible.off('canvi')
  // Emit send a new message to the server, with additional data if needed.
  disponible.emit('canvi'); // Accepts a data argument as the 2nd parameter.
  // Close the subscription (unsubscribe from the given topic).
  final closed = await disponible.close(); // Unsubscribe.
  // CLoses the socket connection.
  socket.close();
}
8
likes
40
pub points
15%
popularity

Publisher

verified publishererik.cat

Adonis (adonisjs) high level web sockets. Implements the websocket protocol specified by adonisjs.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation

License

MIT (LICENSE)

Dependencies

meta, websok

More

Packages that depend on adonis_websok