kraken_websocket 0.2.0-dev.1 copy "kraken_websocket: ^0.2.0-dev.1" to clipboard
kraken_websocket: ^0.2.0-dev.1 copied to clipboard

outdated

W3C compact video tag support.

kraken_websocket #

W3C compact WebSocket API support.

Installation #

First, add kraken_websocket as a dependency in your pubspec.yaml file.

Second, add the following code before calling runApp():

import 'package:kraken_websocket/kraken_websocket.dart';
void main() {
  KrakenWebsocket.initialize();
  runApp(MyApp());
}

Example #

let ws = new WebSocket('ws://127.0.0.1:8399');
ws.onopen = () => {
    ws.send('helloworld');
};
ws.onmessage = (event) => {
    console.log(event);
}