Why Node.js is single threaded?

Node.js uses a single-threaded model in order to support async processing. 

With async processing, an application can perform better and is more scalable under web loads. 
Thus, Node.js makes use of a single-threaded model approach rather than typical thread-based implementation.

Comments

Popular posts from this blog

What test framework did you use to test your nodejs applications

What is V8 Engine? What is the relationship between Node.js and V8?