top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

How does Node.js handle child threads?

+1 vote
275 views
How does Node.js handle child threads?
posted Jun 2, 2017 by Jdk

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

Node.js, in its essence, is a single thread process. It does not expose child threads and thread management methods to the developer. Technically, Node.js does spawn child threads for certain tasks such as asynchronous I/O, but these run behind the scenes and do not execute any application JavaScript code, nor block the main event loop.

If threading support is desired in a Node.js application, there are tools available to enable it, such as the ChildProcess module.

answer Jul 12, 2017 by Manikandan J
Similar Questions
+1 vote

Hi ,

I am new to node js
Can one please help me , how one user can join in more than one room and he can chat at a time without destroying another room.

...