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

추가 예시

Unit Test를 확인하십시오.