Snippets (1)
Some useful code snippets for learning.
1 result(s) found: worker
Worker Thread
Node.js is single threaded and when there is a task that is CPU intensive, then the main thread can get blocked. Here comes the use of a Worker thread.
workerthreadnodejs