kraken_websocket 2.0.1 copy "kraken_websocket: ^2.0.1" to clipboard
kraken_websocket: ^2.0.1 copied to clipboard

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() {
  runApp(MyApp());
  KrakenWebsocket.initialize();
}

Example #

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

Contribute #

convert javascript code to quickjs bytecode:

kraken qjsc ./lib/websocket.js ./lib/websocket_qjsc.dart --dart
0
likes
100
pub points
0%
popularity

Publisher

verified publisheropenkraken.com

W3C compact video tag support.

Homepage

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter, kraken, web_socket_channel

More

Packages that depend on kraken_websocket