zaptools_server 0.2.1 copy "zaptools_server: ^0.2.1" to clipboard
zaptools_server: ^0.2.1 copied to clipboard

A toolkit for Event-Driven websocket management.

Zaptools #

A toolkit for Event-Driven websocket management

Getting started #

Zaptools provides tools for building event-driven websocket integration. It is built on top websocket.

Usage #

  final app = ZapServer();

  app.onConnected((context) {
    // when a new client joined
    print("client connected");
  });

  app.onDisconnected((context) {
    // when a client left
    print("client disconnected!");
  });

  app.onEvent("myEvent", (context) {
    // When the event "myEvent" is received
    print("fire!");
   });

  final server = await app.start();
  print("listen on -> ${server.port}");

Integrating with other frameworks #

Zaptools can integrate with other frameworks that exposes the HttpRequest object from the dart:io library, like Alfred framework.

Alfred

  final app = Alfred();

  final reg = EventRegister();

  reg.onConnected((contexts) {
    // when a new client joined
    print("client connected");
  });

  reg.onDisconnected((context) {
    // when a client left
    print("client disconnected!");
  });

  reg.onEvent("myEvent", (context) {
    // When a event the event "myEvent" is received
    print("fire!");
   });

  app.get("/ws", (HttpRequest req, HttpResponse res) {
    final connector = IOConnector(req, reg);
    connector.start();
  });

Alfred is a great framework to make server side apps with dart.

EventRegister has responsability to create events. IOConnecter connect the HttpRequest with the EventRegister instance and upgrade the connection to websocket.

It planning to add Shelf and Frog support in the future.

EventContext

The EventContext object has the information about the current event, the EventData and the WebSocketConnection it is invoking the event.

    context.connection; // WebSocketConnection
    context.eventName; // name of the event
    context.payload; // payload of this event invoking
    context.headers; // headers of this event invoking

connection property is a instance of WebSocketConnection it has an id and is able to send and close the connection with the client.

    context.connection.id; //connection identifier
    context.connection.send("eventName", "payload"); // send to client
    context.connection.close(); // close the connection

Executing send or close method in onDisconnected event it will throw an Unhandled Error

Contributions are wellcome! #

What's Next?

  • event management.
  • comunication between clients.
3
likes
120
pub points
0%
popularity
screenshot

Publisher

unverified uploader

A toolkit for Event-Driven websocket management.

Repository (GitHub)
View/report issues

Topics

#server #websocket

Documentation

API reference

License

MIT (LICENSE)

Dependencies

uuid, web_socket_channel

More

Packages that depend on zaptools_server