Skip to content

Instantly share code, notes, and snippets.

@nataliefl
Created November 5, 2016 14:14
Show Gist options
  • Save nataliefl/e2c45621022b794bd69649cbe1517c57 to your computer and use it in GitHub Desktop.
Save nataliefl/e2c45621022b794bd69649cbe1517c57 to your computer and use it in GitHub Desktop.
Debug ENOENT errors from spawned processes in node
(function() {
var childProcess = require("child_process");
var oldSpawn = childProcess.spawn;
function mySpawn() {
console.log('spawn called');
console.log(arguments);
var result = oldSpawn.apply(this, arguments);
return result;
}
childProcess.spawn = mySpawn;
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment