A simple SSH client for node.
var ssh = require('ssh-client');
var username = '',
host = '';
var client = ssh(username, host, function(){
client.exec('ls -alh', function(err, out){
console.log('ls result', out);
client.exec('pwd', function(err, out){
console.log('pwd', out);
client.close();
});
});
});
npm install node-ssh-client
git clone
npm install
mocha
MIT