Single thread vs child process vs worker threads vs cluster in nodejs
Published on October 06 2020

10 min Read
Node js is great for handling single-threaded io workloads, but what if we want to do heavy multithreaded, multicore workloads in parallel?. This article explores many ways to do so in nodejs.