0

What are CPU intensive applications and why can't I develop CPU intensive apps with Nodejs ?

Rahul
  • 21
  • 2

1 Answers1

0

A simple but not complete answer to this question is: Single Threaded Event Loop Model architecture of NodeJS. NodeJS does not use the complete power of a CPU because it can only be executed on one thread.

mesod
  • 21
  • 1
  • 5