@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をご参照ください