@partivo/tcp-proxy
v2.0.0
Published
Simple TCP Proxy - Node.js
Downloads
8
Readme
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)