#node-cat: netcat clone written with node.js
A netcat clone written to replace the built-in Windows telnet client. The nodejs TCP echo server example didn't work right because telnet sent each character. node-cat
sends the text by line.
##Usage
$ node-cat <host> <port>
npm install node-cat
##Example Using the nodejs TCP echo server example.
$ node-cat localhost 8080
Hello World!
Hello World!
^C
ending session
$
##Advanced Usage
node-cat
can be embeded in any node program.
var nc = require("node-cat");
var client = nc.createClient(host, port);
client.start(
function(client /* the tcp client returned by net.connect */, rl /* readline instance */, stdin, stdout){
client.write("STATUS: None of your business");
stdout.write("Sent status.");
});