@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
}

更多示例

请查看 单元测试