As we know that NodeJS is single threaded asynchronous language. Is it possible to make it multi threaded language?
Asked
Active
Viewed 114 times
-1
-
Use the benefits of cluster and child processes in node js – Deep Kakkar Feb 24 '20 at 09:17
-
1Does this answer your question? [How worker threads works in Nodejs?](https://stackoverflow.com/questions/59361858/how-worker-threads-works-in-nodejs) – Manuel Spigolon Feb 24 '20 at 09:34
1 Answers
0
Node JS is strictly single-threaded, you can run multiple copies of the same application and then use interprocess communication (IPC) to communicate between different processes of it.
More description can be found here about why is it single-threaded

Aftab Naveed
- 3,652
- 3
- 26
- 40