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() // 如果出现错误,请不要忘记断开连接
throw error
}
请查看 单元测试