# Child Process Module - spawn ```javascript var spawn = require('child_process').spawn; var child = spawn('some-command', ['--with', 'flags']) child.stdout.on('data', function (data) {...}) child.stderr.on('data', function (data) {...}) child.on('exit', function (code) {...}) child.kill('SIGKILL') ``` - execFile ```javascript var execFile = require('child_process').execFile; execFile('some-command', ['flags'], null, function (err, stdout, stderr) { }) ```