我想在node.js中创建一个简单的TCP和HTTP代理-例如,代理监听端口8080,并将所有TCP请求重定向到127.0.0.1:8181
和所有HTTP请求重定向到127.0.0.0.1:8282
我在google上找到了一个简单的http代理代码片段,共20行代码:
var http = require('http');
http.createServer(function(request, response) {
var proxy = http.createClient(80, request.headers['host'])
var proxy_request = proxy.request(request.method, request.url, request.headers);
proxy_request.addListener('response', function (proxy_response) {
proxy_response.addListener('data', function(chunk) {
response.write(chunk, 'binary');
});
proxy_response.addListener('end', function() {
response.end();
});
response.writeHead(proxy_response.statusCode, proxy_response.headers);
});
request.addListener('data', function(chunk) {
proxy_request.write(chunk, 'binary');
});
request.addListener('end', function() {
proxy_request.end();
});
}).listen(8080);
所以基本上我需要在8080上监听任何类型的请求,猜测它是TCP还是HTTP,然后将请求代理到正确的路径。有没有使用以上片段的提示?
谢谢
最佳答案
nodejitsu有一个开源的anode-http-proxy我想你可以试试。记录在案,积极开发。
关于http - node.js中的TCP/HTTP代理,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/6636143/