Siji Node proses mung nganggo siji CPU core (JS-ne mlaku ing siji thread). Kanggo nganggo kabeh core ing mesin, lagi-lagi njalanake macem-macem Node proses — liwat modul cluster, pengelola proses kaya PM2, utawa orkestrasi kontainer — lan nyandheng-nyandheng permintaan ing antarane.\n\n## Masalahe\n\ntext A server with 8 CPU cores running ONE Node process → uses ~1 core, wastes 7. Need multiple processes to utilize all cores and handle more concurrent load. \n\n## The cluster module — fork worker processes\n\n```js
import cluster from "cluster";
import { cpus } from "os";
import http from "http";
