Skip to content

Partivo/node-tcp-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

@partivo/tcp-proxy

It is a simple tcp proxy written in NodeJS. You can support development. If there is a problem, you can open Issues.

Example Code

var proxy = new tcpProxy('127.0.0.1:8888', {
	listen: '127.0.0.1:8887'
});

proxy.on('access', (data) => console.info(data));
proxy.on('error', (data) => console.error(data));

Coming Soon

  • IPv6 Support
  • Load Blancer
  • CLI (Added but still in the test phase)