2019-01-06 14:26:18 -05:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
2019-01-12 16:50:04 -05:00
|
|
|
import { serve } from "https://deno.land/x/http/mod.ts";
|
2019-01-06 14:26:18 -05:00
|
|
|
import {
|
|
|
|
acceptWebSocket,
|
|
|
|
isWebSocketCloseEvent,
|
|
|
|
isWebSocketPingEvent
|
2019-01-12 16:50:04 -05:00
|
|
|
} from "https://deno.land/x/ws/mod.ts";
|
2019-01-06 14:26:18 -05:00
|
|
|
|
|
|
|
async function main() {
|
|
|
|
console.log("websocket server is running on 0.0.0.0:8080");
|
|
|
|
for await (const req of serve("0.0.0.0:8080")) {
|
|
|
|
if (req.url === "/ws") {
|
|
|
|
(async () => {
|
|
|
|
const sock = await acceptWebSocket(req);
|
|
|
|
console.log("socket connected!");
|
|
|
|
for await (const ev of sock.receive()) {
|
|
|
|
if (typeof ev === "string") {
|
|
|
|
// text message
|
|
|
|
console.log("ws:Text", ev);
|
|
|
|
await sock.send(ev);
|
|
|
|
} else if (ev instanceof Uint8Array) {
|
|
|
|
// binary message
|
|
|
|
console.log("ws:Binary", ev);
|
|
|
|
} else if (isWebSocketPingEvent(ev)) {
|
|
|
|
const [_, body] = ev;
|
|
|
|
// ping
|
|
|
|
console.log("ws:Ping", body);
|
|
|
|
} else if (isWebSocketCloseEvent(ev)) {
|
|
|
|
// close
|
|
|
|
const { code, reason } = ev;
|
|
|
|
console.log("ws:Close", code, reason);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
main();
|