De child_process module stelt Node in staat andere programma's/commando's (shell-commando's, scripts, andere binaries) als afzonderlijke OS-processen uit te voeren. Nuttig voor het aanroepen van systeemtools, het uitvoeren van CPU-zware taken buiten het hoofdproces, of het orkestreren van andere programma's.
De vier hoofdmethoden
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)
