Skip to content

Latest commit

 

History

History
33 lines (19 loc) · 530 Bytes

README.md

File metadata and controls

33 lines (19 loc) · 530 Bytes

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