PoptimizeEmptyRequests
Bun

property

http.ServerOptions.optimizeEmptyRequests

optimizeEmptyRequests?: boolean

If set to true, requests without Content-Length or Transfer-Encoding headers (indicating no body) will be initialized with an already-ended body stream, so they will never emit any stream events (like 'data' or 'end'). You can use req.readableEnded to detect this case.