skyrun
v0.2.0
Published
Skyrun is a small utility library to assist running local scripts on remote servers. Skyrun logs into remote hosts via SSH.
Downloads
23
Readme
Skyrun
Skyrun is a small node.js utility library to assist running local scripts on remote servers. With Skyrun you can log into a remote server and run a script of any kind (such as bash, node, python etc. Just provide the appropriate hash bang).
Using Skyrun
At the moment Skyrun only supports logging into remote hosts via ssh public key authentication. Password authentication via ssh is not supported.
var skyrun = require('skyrun');
var options = {
'host':'remote server',
'user':'user to log in with' // optional. Defaults to root
'identity':'private key', // optional
}
var server = skyrun.createServer(options);
server.run('local/path/to/myscript.sh', function(stderr, stdout) {
if (stderr) {
// There was an error running the script
}
else {
// No error. have a look in stdout to see the output of the script
}
});