|
|
|
@ -18,22 +18,12 @@
|
|
|
|
|
).innerHTML += `<span style="color: ${color}">${text}</span><br>`;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
console.log(location.protocol);
|
|
|
|
|
console.log(
|
|
|
|
|
const socket = new WebSocket(
|
|
|
|
|
(location.protocol == "https:" ? "wss://" : "ws://") +
|
|
|
|
|
location.host +
|
|
|
|
|
location.pathname.replace(new RegExp("\/" + "$"), "") +
|
|
|
|
|
"/echo/"
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const socket = new WebSocket(
|
|
|
|
|
location.protocol == "https:"
|
|
|
|
|
? "wss://"
|
|
|
|
|
: "ws://" +
|
|
|
|
|
location.host +
|
|
|
|
|
location.pathname.replace(new RegExp("\/" + "$"), "") +
|
|
|
|
|
"/echo/"
|
|
|
|
|
);
|
|
|
|
|
socket.addEventListener("message", (ev) => {
|
|
|
|
|
log("<<< " + ev.data, "blue");
|
|
|
|
|
});
|
|
|
|
|