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)
