最も単純な例を実装しようとしています:
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 を使用しています