Last updated:
0 purchases
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
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.