Source code
Revision control
Copy as Markdown
Other Tools
/* global onconnect:true */
onconnect = function (evt) {
var ws = new WebSocket(
);
ws.onopen = function () {
evt.ports[0].postMessage({
type: "status",
status: true,
msg: "OnOpen called",
});
ws.send("data");
};
ws.onclose = function () {};
ws.onerror = function () {
evt.ports[0].postMessage({
type: "status",
status: false,
msg: "onerror called!",
});
};
ws.onmessage = function (e) {
evt.ports[0].postMessage({
type: "status",
status: e.data == "Hello world!",
msg: "Wrong data",
});
ws.close();
evt.ports[0].postMessage({ type: "finish" });
};
};