How to configure keep-alive for uWs.App()?
Author: lwq057Created Jul 17, 2024Updated Mar 11, 2026
I looked in the documentation, but couldn't seem to find any relevant configuration.
Is keep-alive enabled by default? What are the parameters?
uWs.App()
.get('/',(res, req)=>{
res.end('ok');
})
.listen(8080, (token) => {});Source: uNetworking/uWebSockets