var SSH = require('simple-ssh');var ssh = new SSH({
host: 'xxxxxxxx',
user: 'xxx',
pass: 'xxxxxx'
}); setInterval(function() {
ssh.exec('code', {
out: function(stdout) {
console.log(stdout);
}
}).start();
}, 60000);Arkadaşlar amacım ssh connect ile 60 saniyede bir kodu göndermesini istiyorum lakin nedense 1 dakika sonra spama bağlıyor node.js de yeniyim