Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

shh

zeekay35BSD0.3.3

Quiet the ssh client.

client, ssh, ssh-client, sshclient

readme

shh

simple ssh client library for node.js

Usage

var shh = require('shh')({
    host: 'example.com',
    user: 'zeekay'
});

shh.cmd('ls', function(err, out) {
    console.log(out);
    shh.close();
});