What is proxy-chain?
The proxy-chain npm package is used to create HTTP and HTTPS proxy servers with various functionalities such as proxy chaining, IP anonymization, and request logging. It is particularly useful for web scraping, testing, and other scenarios where you need to route requests through multiple proxies.
What are proxy-chain's main functionalities?
Creating a Basic Proxy Server
This code sample demonstrates how to create a basic proxy server using the proxy-chain package. The server listens on port 8000 and does not use an upstream proxy or request authentication.
const { ProxyChain } = require('proxy-chain');
const server = new ProxyChain.Server({
port: 8000,
prepareRequestFunction: ({ request, username, password, hostname, port, isHttp }) => {
return {
upstreamProxyUrl: null,
requestAuthentication: false,
};
},
});
server.listen(() => {
console.log('Proxy server is listening on port 8000');
});
Chaining Proxies
This code sample shows how to set up a proxy server that chains requests through an upstream proxy. The upstream proxy URL is specified in the prepareRequestFunction.
const { ProxyChain } = require('proxy-chain');
const server = new ProxyChain.Server({
port: 8000,
prepareRequestFunction: ({ request, username, password, hostname, port, isHttp }) => {
return {
upstreamProxyUrl: 'http://upstream-proxy.com:8080',
requestAuthentication: false,
};
},
});
server.listen(() => {
console.log('Proxy server is listening on port 8000 and chaining to upstream proxy');
});
IP Anonymization
This code sample demonstrates how to create a proxy server with IP anonymization. The anonymize option is set to true in the prepareRequestFunction.
const { ProxyChain } = require('proxy-chain');
const server = new ProxyChain.Server({
port: 8000,
prepareRequestFunction: ({ request, username, password, hostname, port, isHttp }) => {
return {
upstreamProxyUrl: null,
requestAuthentication: false,
anonymize: true,
};
},
});
server.listen(() => {
console.log('Proxy server is listening on port 8000 with IP anonymization');
});
Request Logging
This code sample shows how to log incoming requests to the proxy server. The prepareRequestFunction logs the hostname and port of each request.
const { ProxyChain } = require('proxy-chain');
const server = new ProxyChain.Server({
port: 8000,
prepareRequestFunction: ({ request, username, password, hostname, port, isHttp }) => {
console.log(`Request to ${hostname}:${port}`);
return {
upstreamProxyUrl: null,
requestAuthentication: false,
};
},
});
server.listen(() => {
console.log('Proxy server is listening on port 8000 with request logging');
});
Other packages similar to proxy-chain
http-proxy
The http-proxy package is a popular library for creating HTTP proxies in Node.js. It provides a simple API for proxying HTTP and WebSocket requests. Compared to proxy-chain, http-proxy is more lightweight and focuses on basic proxy functionalities without advanced features like proxy chaining or IP anonymization.
node-http-proxy
node-http-proxy is another widely-used package for creating HTTP proxies. It offers a robust set of features for proxying HTTP and WebSocket requests, including support for proxying to multiple target servers. While it is similar to http-proxy, node-http-proxy does not offer the same level of advanced features as proxy-chain, such as proxy chaining and IP anonymization.
redbird
Redbird is a high-level reverse proxy library for Node.js that supports load balancing, SSL termination, and WebSocket proxying. It is designed for more complex use cases involving multiple backend servers and SSL management. Compared to proxy-chain, Redbird is more focused on reverse proxying and load balancing rather than chaining proxies or anonymizing IPs.
proxy-chain
Node.js implementation of a proxy server (think Squid) with support for SSL, authentication and upstream proxy chaining.
The authentication and proxy chaining configuration is defined in code and can be dynamic.
Note that the proxy server only supports Basic authentication
(see Proxy-Authorization for details).
For example, this package is useful if you need to use proxies with authentication
in the headless Chrome web browser, because it doesn't accept proxy URLs such as http://username:password@proxy.example.com:8080
.
With this library, you can setup a local proxy server without any password
that will forward requests to the upstream proxy with password.
For this very purpose the package is used by the Apify web scraping platform.
To learn more about the rationale behind this package,
read How to make headless Chrome and Puppeteer use a proxy server with authentication.
Run a simple HTTP/HTTPS proxy server
const ProxyChain = require('proxy-chain');
const server = new ProxyChain.Server({ port: 8000 });
server.listen(() => {
console.log(`Proxy server is listening on port ${8000}`);
});
Run a HTTP/HTTPS proxy server with credentials and upstream proxy
const ProxyChain = require('proxy-chain');
const server = new ProxyChain.Server({
port: 8000,
verbose: true,
prepareRequestFunction: ({ request, username, password, hostname, port, isHttp }) => {
return {
requestAuthentication: username !== 'bob' || password !== 'TopSecret',
upstreamProxyUrl: `http://username:password@proxy.example.com:3128`,
};
},
});
server.listen(() => {
console.log(`Proxy server is listening on port ${8000}`);
});
Closing the server
To shutdown the proxy server, call the close([destroyConnections], [callback])
function. For example:
server.close(true, () => {
console.log('Proxy server was closed.');
});
The closeConnections
parameter indicates whether pending proxy connections should be forcibly closed.
If the callback
parameter is omitted, the function returns a promise.
Helper functions
The package also provides several utility functions.
anonymizeProxy(proxyUrl, callback)
Parses and validates a HTTP proxy URL. If the proxy requires authentication,
then the function starts an open local proxy server that forwards to the proxy.
The port is chosen randomly.
The function takes optional callback that receives the anonymous proxy URL.
If no callback is supplied, the function returns a promise that resolves to a String with
anonymous proxy URL or the original URL if it was already anonymous.
closeAnonymizedProxy(anonymizedProxyUrl, closeConnections, callback)
Closes anonymous proxy previously started by anonymizeProxy()
.
If proxy was not found or was already closed, the function has no effect
and its result if false
. Otherwise the result is true
.
The closeConnections
parameter indicates whether pending proxy connections are forcibly closed.
The function takes optional callback that receives the result Boolean from the function.
If callback is not provided, the function returns a promise instead.
parseUrl(url)
Calls Node.js's url.parse
function and extends the resulting object with the following fields: scheme
, username
and password
.
For example, for HTTP://bob:pass123@example.com
these values are
http
, bob
and pass123
, respectively.
redactUrl(url, passwordReplacement)
Takes a URL and hides the password from it. For example:
console.log(redactUrl('http://bob:pass123@example.com'));