vow-session
vow-session parses Cookie headers and builds Set-Cookie headers for login flows. Install with vpm:
curl -fsSL https://install.vowlang.dev | shexport PATH="$HOME/.local/bin:$PATH"vpm add vow-session vow-web-servervpm installQuick start
Section titled “Quick start”import vsess from vow_session
fn main(caps: Caps) -> int { return match vsess.cookie_value("sid=abc123", "sid") { Ok(v) => len(v), Err(code) => code, };}Run tests
Section titled “Run tests”cd vow-libs/vow-session && vow test tests/session.vow