@sumor/ssh-tools

ssh-tools

シンプルで使いやすくスケーラブルなSSH接続とツール。

CI Test Coverage Audit

インストール

npm install ssh-tools --save

前提条件

Node.JS バージョン

Node.JS バージョン 18.x 以上が必要です。

使用方法

SSH接続

const SSH = require('@sumor/ssh-tools')
const ssh = SSH({
  // サーバーの詳細情報を入力してください
  host: '62.16.12.88',
  iHost: '172.11.200.330',
  port: 22,
  username: 'root',
  password: 'password'
})

await ssh.connect()
await ssh.disconnect()

SSHコマンド

const SSH = require('@sumor/ssh-tools')
const ssh = SSH(server)

await ssh.connect()
try {
  const result = await ssh.exec('ls -la')
  console.log(result)
  await ssh.disconnect()
} catch (error) {
  await ssh.disconnect() // エラーが発生した場合は切断するのを忘れないでください
  throw error
}

さらなる例

詳細はUnit Testをご覧ください。