I am learning Node js. During my research I have continuously read that Node.js is not good at computation heavy tasks. What does that mean exactly? What are examples that can be considered " computation heavy " for a web application. I wanted to build a e commerce / social networking web app.
Asked
Active
Viewed 1,842 times
1 Answers
-2
Node.js server is single-threaded, meaning that any operation that takes a long time to execute will block the rest of your program from running. This means single thread can only execute one instruction at a time, blocking others.

smushi
- 701
- 6
- 17