child_process मॉड्यूल Node ला इतर प्रोग्राम/कमांड (shell कमांड, स्क्रिप्ट, इतर बायनरी) वेगळ OS प्रक्रिया म्हणून चालवण्याची परवानगी देते. सिस्टम टूल्स (git, ffmpeg, imagemagick) चालवण्यासाठी, CPU-गहन कार्य मुख्य प्रक्रियेच्या बाहेर पाठवण्यासाठी, किंवा इतर प्रोग्रामची समन्वय साधण्यासाठी उपयोगी.
चार मुख्य पद्धती
exec → run a shell command, buffer all output (simple, small output)
execFile → run a file directly (no shell — safer, faster)
spawn → stream output (for large output / long-running processes)
fork → spawn a new NODE process with an IPC channel (Node-to-Node)
