A simple echo websocket hosted on
now
.
wss://ws.now.sh
// Something like
const echoSock = new WebSocket("wss://ws.now.sh");
echoSock.onmessage = msg => console.log(msg.data);
echoSock.onopen = () => echoSock.send("hello");
MIT © Hemanth.HM
A simple echo websocket hosted on
now
.
wss://ws.now.sh
// Something like
const echoSock = new WebSocket("wss://ws.now.sh");
echoSock.onmessage = msg => console.log(msg.data);
echoSock.onopen = () => echoSock.send("hello");
MIT © Hemanth.HM