tcp-proxy

v0.0.1
A simple TCP proxy using node.js based on the work of node-http-proxy

tcp-proxy

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

npm i tcp-proxy

Metadata

  • MIT
  • 0.10.x
  • Jarrett Cruger
  • released 3/3/2014

Downloads

Maintainers