シンプルで使いやすく、スケーラブルなSSH接続とツール。
npm install ssh-tools --save
Node.JSバージョン18.x以上が必要
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()
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() // エラー発生時もdisconnectを忘れずに
throw error
}
Unit Testをご確認ください。