child_process தொகுதி Node ஐ பிற நிரல்கள்/கட்டளைகள் (shell கட்டளைகள், வசன வாক்கியங்கள், பிற பைனரிகள்) தனித்தனி OS செயல்முறைகளாக நடைமுறைப்படுத்த அனுமதிக்கிறது. கணினி கருவிகளைக் குறிப்பிடுவதற்கு, 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)
