kraken_websocket

Last updated:

0 purchases

kraken_websocket Image
kraken_websocket Images
Add to Cart

Description:

kraken websocket

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();
}
copied to clipboard
Example #
let ws = new WebSocket('ws://127.0.0.1:8399');
ws.onopen = () => {
ws.send('helloworld');
};
ws.onmessage = (event) => {
console.log(event);
}
copied to clipboard
Contribute #
convert javascript code to quickjs bytecode:
kraken qjsc ./lib/websocket.js ./lib/websocket_qjsc.dart --dart
copied to clipboard

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.