Which module should be used to run CPU-intensive work without blocking the event loop?
- A cluster
- B worker_threads
- C http
- D events
Answer
worker_threads
worker_threads moves CPU-bound work off the main thread within one process. cluster forks processes to scale I/O-bound work across cores.





