So Node.js uses event loop for non-blocking IO.
I wonder if that event loop is in the same thread as Node.js main for handling requests?
So Node.js uses event loop for non-blocking IO.
I wonder if that event loop is in the same thread as Node.js main for handling requests?
Yes, its in the same thread. There will be only one thread for a single node.