runtime-telnet-server
Telnet server for runtimejs
Install:
npm install runtime-telnet-server
Usage:
// Note the '()', this starts the server.var rtelnet = ;// OR// All the parameters are optionalvar rtelnet = callback;// ORvar rtelnet = options callback;
With no parameters, this listens on port 9000.
With callback:
var rtelnet = { // Do what you want};
Options:
- port, default is 9000
var rtelnet - port: 9090 // this is optional;
Client Usage:
This assumes you're on Unix. Windows, you're on your own (maybe use PuTTY?).
telnet your.host.ip.here
NOTES:
The port used (default is 9000) must be free and usable, on both QEMU and the host. Tested and working with the Unix telnet client. Yay! Just type in commands like the runtime shell.