jcrugzz / tcp-proxy

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

Home Page:https://github.com/jcrugzz/tcp-proxy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

https://github.com/jcrugzz/tcp-proxy


Languages

Language:JavaScript 100.0%