Skip to content

Instantly share code, notes, and snippets.

@nicholasess
Created April 14, 2018 18:33
Show Gist options
  • Save nicholasess/a7019c3a50138971e22d460c8bb2489f to your computer and use it in GitHub Desktop.
Save nicholasess/a7019c3a50138971e22d460c8bb2489f to your computer and use it in GitHub Desktop.
const { exec } = require("child_process");
exec("node teste.js", (error, stdout, stderr) => {
if (error) {
console.error(`exec error: ${error}`);
return;
}
console.log(`stdout: ${stdout}`);
console.log(`stderr: ${stderr}`);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment