Skip to content

jaeschrich/node-cat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#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>

Install

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.");
});

About

A net-cat clone for windows

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published