From d3425ed66a4d1834afb20baea3e231f4a82236de Mon Sep 17 00:00:00 2001 From: Dorian Niemiec Date: Wed, 3 Apr 2024 09:12:05 +0200 Subject: [PATCH] Added HTTP/2 limitation of SVR.JS on Bun --- source/docs.md | 1 + 1 file changed, 1 insertion(+) diff --git a/source/docs.md b/source/docs.md index 46d37b2..9eb253f 100644 --- a/source/docs.md +++ b/source/docs.md @@ -224,6 +224,7 @@ However, SVR.JS on Bun currently has these limitations: * WebSocket requests are not supported (via _req.socket_ API). * There is just one worker process (Bun 1.0 and later; due to _cluster_ module not being implemented in Bun; SVR.JS shims the cluster module, but ports aren't shared in Bun 1.0 and later). * PBKDF2 function blocks the event loop, which may cause denial of service. +* HTTP/2 is not supported (because Bun didn't implement HTTP/2 server in _http2_ module yet) ## Configuration