telnetlib icon indicating copy to clipboard operation
telnetlib copied to clipboard

A simple Node.js telnet server/client library.

Results 10 telnetlib issues
Sort by recently updated
recently updated
newest added

Hi Trying to connect to aardwolf.org MUD, and there isn't any output. Example code: ```js const telnetlib = require("telnetlib"); const c = telnetlib.createConnection( { host: "aardwolf.org", port: 23, }, ()...

Add support for ANSI in GMCP messages. Some servers - looking at you aardwolf - will include the ESC char directly in the JSON. This makes the JSON invalid. This...

Now any error in _transform will be hidden. With this it should be possible to do client.on('error'...

Radically bump from 4KiB to 1MiB. Honestly this could easily be much larger, but 4KiB is just too small. In terms of pure bytes it is smaller than my terminal...

Is it possible to reconnect? With nodejs `net` it is possible to call `net.connect` in order to reconnect, but this doesn't seem possible here. Might also need to clear all...

The event 'end' is never emitted when listening from a client, using MCCP on remote and local. This is a bit hacky, but I didn't find any other solution. Should...

This project is perfect to me, thanks a lot. I created a server by telnetlib. I want disable client echo the password input, but didn't work. Finally I found the...

I have tried to install telnetlib on linux but i keep getting this error: ``` /home/henpett/Desktop/server/node_modules/telnetlib/src/TelnetSocket/TelnetSocket.js:20 isTTY = true; ^ SyntaxError: Unexpected token = ``` it works like it should...