Skip to content

Instantly share code, notes, and snippets.

@treeform
Created November 12, 2019 19:26
Show Gist options
  • Save treeform/8662b651335a0adf703bb7601752d3f2 to your computer and use it in GitHub Desktop.
Save treeform/8662b651335a0adf703bb7601752d3f2 to your computer and use it in GitHub Desktop.
import ws, asyncdispatch, asynchttpserver
proc cb(req: Request) {.async.} =
var ws = await newWebSocket(req)
await ws.send("Welcome")
ws.close()
var server = newAsyncHttpServer()
waitFor server.serve(Port(9001), cb)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment