Google News
logo
NodeJS - Interview Questions
Does Node.js support multi-core platforms? And is it capable of utilizing all the cores?
Yes, Node.js would run on a multi-core system without any issue. But it is by default a single-threaded application, so it can’t completely utilize the multi-core system.
 
However, Node.js can facilitate deployment on multi-core systems where it does use the additional hardware. It packages with a Cluster module which is capable of starting multiple Node.js worker processes that will share the same port.
Advertisement