如何使用node.js http-proxy记录计算机中的HTTP流量?

时间:2012-06-11 18:11:41

标签: javascript http node.js http-proxy node-http-proxy

我正在尝试实现最简单的例子:

var http = require('http'),
var httpProxy = require('http-proxy');

httpProxy.createServer(function (req, res, proxy) {
    //
    // I would add logging here
    //
    proxy.proxyRequest(req, res, { host: 'www.google.com', port: 80 });
}).listen(18000);

当我将浏览器配置为使用此代理并导航到www.google.com时,我没有收到任何回复。我做错了什么?

我使用的是Windows 7 Chrome

2 个答案:

答案 0 :(得分:5)

以下是如何记录请求的简单示例。 我使用类似的方法将我的所有域记录到一个数据库中。

我从http://blog.nodejitsu.com/http-proxy-middlewares

复制了很多
var fs = require('fs'),
    http = require('http'),
    httpProxy = require('http-proxy'),

logger = function() {    
  // This will only run once
  var logFile = fs.createWriteStream('./requests.log');

  return function (request, response, next) { 
    // This will run on each request.
    logFile.write(JSON.stringify(request.headers, true, 2));
    next();
  }
}

httpProxy.createServer(
  logger(), // <-- Here is all the magic
  {
    hostnameOnly: true,
    router: {
      'example1.com': '127.0.0.1:8001', // server on localhost:8001
      'example2.com': '127.0.0.1:8002'  // server 2 on localhost:8002
  }
}).listen(8000);

答案 1 :(得分:0)

我不确定这是否有帮助,因为发布的信息非常短。 但是我找到了一个帖子,他们更新了api ...

你可能想查看这篇文章:

更新到node-http-proxy v0.5.0 http://blog.nodejitsu.com/updating-node-http-proxy