webpnp/static/renderer.js
Kai Vogelgesang e8900515bb Boilerplate
2020-04-16 17:15:17 +02:00

9 lines
247 B
JavaScript

const ws_url = new URL('ws', window.location.href);
ws_url.protocol = ws_url.protocol.replace('http', 'ws');
const ws = new WebSocket(ws_url.href);
ws.onmessage = function(event) {
const msg = JSON.parse(event.data);
console.log(msg);
};