1Hardgeneralโฑ 45sWhy can CPU-bound work block the Node.js event loop, and what is a common mitigation?๐โผANode.js has multiple threads by default so this never happensBNode.js runs JS on a single main thread, so long synchronous computations block all other requests from being processed; mitigation includes offloading to worker_threads or a separate serviceCCPU-bound work is always automatically parallelizedDThis only affects TypeScript projects