Skip to content
Advertisement

Which threading model is used by node.js? [closed]

When a new client connects to a server running node.js, does it use

  • connection per process
  • connection per thread
  • request per thread

or something else?

Advertisement

Answer

Node.js is a single-threaded server application.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement