Suppose if there is one request R1
being processed by the Nodejs server and the debugger has paused the system at a breakpoint.
Now at this point (after pause) if another request R2
is made by the client, does it enter the Nodejs server at all?
If it doesn't enter the server, then which component of Nodejs server will keep that request R2 on standby till that debugger pause is released?
If it does enter the server, then which component of Nodejs server will handle this R2 and how?
I can't find anything on this, any help is appreciated. Thanks