0.1.1 • Published 9 years ago

http-to-socks-proxy v0.1.1

Weekly downloads
7
License
MIT
Repository
github
Last release
9 years ago

http-to-socks-proxy

Implements http proxy server which sends requests through the socks proxy (proxies)

Usage

You can specify proxy or proxyList options. If proxyList is specified, proxy will be selected randomly

var ProxyServer = require('proxy-server');
var options = {
    //proxy: '127.0.0.1:9050',
    proxy: null,
    proxyList: './proxy.list',
    proxyListReloadTimeout: 60 // one minute
};
ProxyServer.createServer(options).listen(8080);

proxy.list must be in the following format:

host:port
host:port:login:password

Known problems

  • does not support Keep Alive for http at all
0.1.1

9 years ago

0.1.0

9 years ago

0.0.5

9 years ago

0.0.4

9 years ago

0.0.3

9 years ago

0.0.2

9 years ago

0.0.1

9 years ago