Rafael Gutkowski

Results 21 comments of Rafael Gutkowski

Using server_sent_event.ts from std solves the issue. See https://github.com/denoland/deno/issues/19143#issuecomment-1549141025 for more. One can filter SSE closes with following code: ```ts async function handle(conn: Deno.Conn) { const httpConn = Deno.serveHttp(conn) for...