Node.js - Child Processes
How can you modify this code to handle large output without buffering issues?
const { execFile } = require('child_process');
execFile('someLargeOutputScript.sh', (error, stdout, stderr) => {
if (error) throw error;
console.log(stdout);
});