Conexiones y herramientas SSH que son simples, fáciles de usar y escalables.
npm install ssh-tools --save
Se requiere Node.JS versión 18.x o superior
const SSH = require('@sumor/ssh-tools')
const ssh = SSH({
// Detalles de servidor ficticios, reemplace con los suyos
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() // no olvide desconectarse si ocurre un error
throw error
}
Por favor, revise las Pruebas Unitarias