How do I use node.js http-proxy for logging HTTP traffic in a computer?
问题 I am trying to implement the simplest example: 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); When I configure my browser to use this proxy and I navigate to www.google.com I receive no response. What is that I am doing wrong? I'm using Windows 7 Chrome 回答1: Here is an simple example how to log requests.