🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tcp-proxy

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

0.0.1
latest
Version published
Weekly downloads
56
-18.84%
Maintainers
1
Weekly downloads
 
Created

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

FAQs

Package last updated on 03 Mar 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts