Skip to content

jcrugzz/tcp-proxy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tcp-proxy

build status

Exactly what you would expect, a simple tcp proxy written in node. Inspiration from node-http-proxy.

Work in Progress

Example

Simple tcp proxy

var tcpProxy = require('tcp-proxy');

var server = tcpProxy.createServer({
  target: {
    host: '127.0.0.1',
    port: 9000
  }
});

server.listen(8000);

API

About

A simple tcp proxy with pluggable duplex streams for custom protocol proxying

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published