Node Exec Child_Process SSH Command Password

const {spawn} = require('child_process');
ssh = spawn('ssh', [
  '[email protected]',
  'ls /'
]);
GutoTrosla