Skip to content

andris9/proxy-test-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

proxy-test-server

Proxy server for testing proxied connections

Usage

Install from npm

npm install proxy-test-server

Create HTTP proxy server

HTTP proxy supports only CONNECT requests

var HttpConnectProxy = require('../lib/server');
var proxy = new HttpConnectProxy();

proxy.listen(9999, function () {
    console.log('PROXY Server Listening');
});

proxy.on('connect', function (port, host, socket) {
    var time = new Date().toISOString().substr(0, 19).replace('T', '');
    console.log('[%s] From %s to %s:%s', time, socket.remoteAddress, host, port);
});

Test Proxy

Make a http request against proxy

curl -i -x http://127.0.0.1:9999 https://google.com

License

MIT

About

Proxy server for testing proxied connections

Resources

License

Stars

Watchers

Forks

Packages

No packages published