showclix / chatterbox

Node.js library to chat with your boxes
2 stars 0 forks source link

Chatterbox

Chat with your boxes. Node.js library for working with and deploying to remote servers.

Example

var chatterbox = require('chatterbox');

var servers = [
    '10.1.10.100',
    '10.1.10.101'
];

chatterbox(servers, {user: true, password: true}, function() {
    this.remote('uptime', chatterbox.print);
    this.remote('whoami', chatterbox.print);
    this.sudo('sudo whoami', chatterbox.print);
});

API

TODO