Handling NodeJS CPU Intensive Tasks

added by JavaScript Kicks
9/27/2019 7:19:04 AM

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