Skip to content

Navigation Menu

Sign in
Sign up

Latest commit

History

4 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

node-ssh-client

A simple SSH client for node.

Example

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();
 });
 });
});

Install

 npm install node-ssh-client

Testing

git clone
npm install
mocha

License

MIT

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages

AltStyle によって変換されたページ (->オリジナル) /