I am trying to run commands on Windows via NodeJS child processes:
var terminal = require(\'child_process\').spawn(\'cmd\'); terminal.stdout.on(\'data\', fu
Make sure you stdin.end() at some point or the child process won't exit.
stdin.end()