<Why is Node.JS only accepting one request at a ti...
# community-feeds
r
Why is Node.JS only accepting one request at a time, leaving the port in TIME_WAIT even after socket closure? So, I am trying to make a simple express app that can handle requests and send a response. When I send a request from a client, the express app receives it. The connection between the client and the server will stay for roughly 30 seconds, and if it doesn't receive any other input, it will close the socket. (This is my assumption). Then, it won't accept any other requests for the next ~2 minutes. It simply doesn't hear them. No errors or anything. The client will hang, timing out from not...