deno.land / x / deno@v1.28.2 / cli / bench / testdata / deno_upgrade_http.js

deno_upgrade_http.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
const { serve, upgradeHttpRaw } = Deno;const u8 = Deno.core.encode("HTTP/1.1 101 Switching Protocols\r\n\r\n");
async function handler(req) { const [conn, _firstPacket] = upgradeHttpRaw(req); await conn.write(u8); await conn.close();}
serve(handler, { hostname: "127.0.0.1", port: 9000 });
deno

Version Info

Tagged at
2 years ago