Mid
From PDF
Node.js
Node.js
What are child processes and how are they used?
Child processes are separate processes spawned by your Node.js app to run shell
commands or other programs, enabling parallel execution.
const { exec } = require('child_process');
exec('ls -la', (err, stdout, stderr) => {
if (err) console.error(err);
console.log(stdout);
});
Useful for running system commands or scripts without blocking your main app.
Share this Q&A
Share preview image: https://www.toolliyo.com/images/toolliyo-logo.png