vow-websocket
vow-websocket detects GET + Upgrade handshake requests — RFC 6455 frame I/O lands in v0.2. Install with vpm:
curl -fsSL https://install.vowlang.dev | shexport PATH="$HOME/.local/bin:$PATH"vpm add vow-websocket vow-web-servervpm installQuick start
Section titled “Quick start”import vwsock from vow_websocket
fn main(caps: Caps) -> int { return match vwsock.is_ws_upgrade("GET") { true => 0, false => 1, };}Run tests
Section titled “Run tests”cd vow-libs/vow-websocket && vow test tests/ws.vow