간단하고 사용하기 쉽고 확장 가능한 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
}
Unit Test를 확인해주세요.