You are reading a single comment by @Gordon and its replies. Click here to read the full conversation.
  • Thanks! I've recently added the ability to include JS modules so I should get the module included for 1v96.

    If you're interested in Telnet, this should work to enable it:

    var server = require("net").createServer(function(c) {
      console.log('server connected');
      c.write('Your welcome message!\r\n');
      LoopbackA.setConsole();
      LoopbackB.pipe(c);
      c.pipe(LoopbackB);
    }).listen(23);
    

    Although as above, you can't have reset() in your code or it'll break the connection.

About

Avatar for Gordon @Gordon started