1529 Views
NodeJS is frequently referred to as single-threaded. This is true - but there's a catch. Node has single " main" thread to handle all synchronous code execution from your scripts, and in the case of a Node API, all client requests.
0 comments