Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

14 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

HOST-PROXY

Fast, lightweight and transparent http(s) proxy that supports dynamic hostnames.

Installation

Npm

npm install host-proxy

Example

var createProxy = require('host-proxy');

// Start a proxy server.
createProxy(function (hostname, secure) {
	// Respond with an address to proxy to.
	// Result is passed to net.createConnection.
	return ({
		"test.com": "http://localhost:3002",
		"secure.test.com": "https://localhost:3003",
		"search.test.com": "http://google.ca",
		"api.test.com": { port: 12345, family: 'IPv4', address: "127.0.0.1" }
	})[hostname];
}).listen(80);

The above example creates the following proxy:

Contributions

  • Use npm to run tests.

Please feel free to create a PR!

About

πŸ™‹ Fast, lightweight and transparent http(s) proxy that supports dynamic hostnames.

Resources

Stars

16 stars

Watchers

2 watching

Forks

Releases

Packages

Used by

Contributors

Languages