events.js:72 throw er; // Unhandled \'error\' event ^ Error: spawn ENOENT at errnoException (chil
Windows solution: Replace spawn with node-cross-spawn. For instance like this at the beginning of your app.js:
spawn
(function() { var childProcess = require("child_process"); childProcess.spawn = require('cross-spawn'); })();