Выполнить команду Shell из узла HTML кнопки JS

const { exec } = require('child_process');
exec('ls -lart', (error, stdout, stderr) => {
  if (error) {
    console.error(`exec error: ${error}`);
    return;
  }
  console.log(`stdout: ${stdout}`);
  console.error(`stderr: ${stderr}`);
});
Anthony Smith