http.createServer()无法正常工作

时间:2016-09-19 09:02:26

标签: javascript node.js http-proxy

我是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);

0 个答案:

没有答案