-1

As we know that NodeJS is single threaded asynchronous language. Is it possible to make it multi threaded language?

1 Answers1

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

https://stackoverflow.com/a/17959746/601182

Aftab Naveed
  • 3,652
  • 3
  • 26
  • 40