我是node.js http-proxy的新手。我尝试使用它,但它给了我错误:未捕获的TypeError:http.createServer不是一个函数。我试图在网上搜索但没有解决我的问题。我也安装了npm http-proxy。 这是代码:
var http = require('http');
var httpProxy = require('http-proxy');
var proxy = httpProxy.createProxyServer({});
http.createServer(function(req, res) {
proxy.web(req, res, { target: 'http://www.google.com' }, function(err) {
if(err)
console.error(err);
});
}).listen(8080);