New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

node-telnet

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-telnet

Communicate via telnet

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

Installation

$ npm install node-telnet --save

Usage

const client = require('node-telnet');

const opts = {
  host: '127.0.0.1', // normally '127.0.0.1', will default to if undefined
  port: 1337, //port openvpn management console
  timeout: 1500, //timeout for connection - optional, will default to 1500ms if undefined
  logpath: 'log.txt' //optional write openvpn console output to file, can be relative path or absolute
};
const auth = {
  user: 'vpnUserName',
  pass: 'vpnPassword',
};
const connection = client.connect(opts)

// will be emited on successful interfacing with openvpn instance
connection.on('connected', () => {
  client.authorize(auth);
});

// emits console output of openvpn instance as a string
connection.on('console-output', output => {
  console.log(output)
});

// emits console output of openvpn state as a array
connection.on('state-change', state => {
  console.log(state)
});

// emits console output of openvpn state as a string
connection.on('error', error => {
  console.log(error)
});

// get all console logs up to this point
client.getLog(console.log)

// and finally when/if you want to
client.disconnect();

// emits on disconnect
connection.on('disconnected', () => {
  // finally destroy the disconnected manager 
  client.destroy()
});

Keywords

node

FAQs

Package last updated on 28 Sep 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts