Skip to content

Instantly share code, notes, and snippets.

@CliffCrerar
Created May 12, 2020 04:27
Show Gist options
  • Save CliffCrerar/3737d0161402627483e0c52348c3d1a7 to your computer and use it in GitHub Desktop.
Save CliffCrerar/3737d0161402627483e0c52348c3d1a7 to your computer and use it in GitHub Desktop.
child process output callback function standard from node docs
function(error, stdout, stderr){
if (error) {
console.error(`exec error: ${error}`);
return;
}
console.log(`stdout: ${stdout}`);
console.error(`stderr: ${stderr}`);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment