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

teletype

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

teletype

A simple Telnet client.

latest
Source
npmnpm
Version
0.2.0
Version published
Weekly downloads
27
-52.63%
Maintainers
1
Weekly downloads
 
Created
Source

Teletype

Node.js package Build status

A simple Telnet client.

Installation

$ npm install teletype --save

Usage

const teletype = require('teletype')
const client = teletype('localhost')

client.exec('?PWR', /PWR[01]/)
  .then(response => {
    console.log(response) // PWR0
  })

API

teletype(host[, port, options])

Creates a Teletype client.

host

Type: String

The hostname or IP address of the host to connect to.

port

Type: Number
Default: 23

The port to connect to.

options

Type: Object

timeout

Type: Number or false
Default: false

The number of milliseconds before a call is considered to be timed out. This applies to the initial connection, readUntil(), and exec() if called with match. exec() without match and close() will never time out.

client.exec(command[, match])

Sends a command to the host and reads incoming data until match is encountered. If match is given, it returns a promise for a response string which contains the first line where match was encountered.

command

Type: String

The command to send to the host.

match

Type: RegExp

The regular expression to match against incoming data. If omitted, Teletype won’t read any incoming data but will send the command to the host.

client.readUntil(match)

Reads incoming data from the host until match is encountered. Returns a promise for a response string which contains the first line where match was encountered.

client.close()

Sends a FIN packet and destroys the socket.

Errors

If a required argument is missing, Teletype will reject a TypeError. If a call times out, it will reject an error with the code ETIMEDOUT. Any other error will be the same as emitted by Node.js’s net.

Acknowledgments

Teletype is inspired by Ruby’s Net::Telnet and Python’s telnetlib.

If you need something more advanced, take a look at telnet-client.

License

Teletype itself is licensed under the ISC license. See LICENSE for the full license.

Keywords

telnet

FAQs

Package last updated on 29 Jan 2017

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