ssh-exec-simple

0.1.0 • Public • Published

ssh-exec-simple

A simple wrapper to the linux command ssh user@server "<some command>" which allows executing remote scripts via ssh provided the host has the permissions (make sure you generate the keys via ssh keygen and copy the pub key to the host).

    ssh.defineHost("pi", "192.168.x.x");
    
    ssh.run("pwd", (err, output) => {
      //Do your handling here
      if(!err) {
        console.log(`Result is: ${output}`);
      }
    });
  • Testing *

With mocha. Use environment variables as such to substitute with your user@host:

TEST_USER=test TEST_HOST=192.168.0.160 mocha

Readme

Keywords

Package Sidebar

Install

npm i ssh-exec-simple

Weekly Downloads

0

Version

0.1.0

License

MIT

Unpacked Size

4.9 kB

Total Files

7

Last publish

Collaborators

  • tcardoso