views:

31

answers:

1

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?

A: 

Yes, its in the same thread. There will be only one thread for a single node.

soj