NodeJS http-proxy-middleware

http-proxy-middleware

用于把请求代理转发到其他服务器的中间件

1
npm install --save-dev http-proxy-middleware
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// 引用依赖
var express = require('express');
var proxy = require('http-proxy-middleware');

// proxy 中间件的选择项
var options = {
target: 'http://www.example.org', // 目标服务器 host
changeOrigin: true, // 默认false,是否需要改变原始主机头为目标URL
ws: true, // 是否代理websockets
pathRewrite: {
'^/api/old-path' : '/api/new-path', // 重写请求,比如我们源访问的是api/old-path,那么请求会被解析为/api/new-path
'^/api/remove/path' : '/path' // 同上
},
router: {
// 如果请求主机 == 'dev.localhost:3000',
// 重写目标服务器 'http://www.example.org' 为 'http://localhost:8000'
'dev.localhost:3000' : 'http://localhost:8000'
}
};

// 创建代理
var exampleProxy = proxy(options);

// 使用代理
var app = express();
app.use('/api', exampleProxy);
app.listen(3000);

路径匹配

  • proxy({...}): 匹配任何路径,将所有请求转发
  • proxy({'/', {...}}): 匹配任何路径,将所有请求转发
  • proxy({'/api', {...}}): 匹配 /api 开头的请求
  • proxy(['/api', '/ajax'], {....}): 匹配多个路径转发
  • proxy('**', {...}): 匹配任何路径,将所有请求转发
  • proxy('**/*.html', {...}): 匹配任何以html结尾的
  • proxy('/api/**/*.html', {...}): 匹配 /api 下以 html 结尾的请求
  • proxy(['/api/**', '/ajax/**'], {...}): 组合
  • proxy(['/api/**', '!**/bad.json'], {...}): 不包括 **/bad.json
1
2
3
4
var filter = function (pathname, req) {
return (pathname.match('^/api') && req.method === 'GET');
};
var apiProxy = proxy(filter, {target: 'http://www.example.org'})

重写请求

pathRewrite 重写目标url请求

1
2
3
4
5
6
7
8
9
10
11
// 重写
pathRewrite: {'^/old/api' : '/new/api'}

// 移除
pathRewrite: {'^/remove/api' : ''}

// 添加
pathRewrite: {'^/' : '/basepath/'}

// 自定义
pathRewrite: function (path, req) { return path.replace('/api', '/base/api') }

router 重新指定请求转发目标

1
2
3
4
5
6
7
8
9
10
11
12
13
// 使用主机或者路径进行匹配,返回最先匹配到结果
// 所以配置的顺序很重要
router: {
'integration.localhost:3000' : 'http://localhost:8001', // host only
'staging.localhost:3000' : 'http://localhost:8002', // host only
'localhost:3000/api' : 'http://localhost:8003', // host + path
'/rest' : 'http://localhost:8004' // path only
}

// 自定义
router: function(req) {
return 'http://localhost:8004';
}

http proxy

onError

1
2
3
4
5
6
7
8
// 监听proxy的onerr事件
proxy.on('error', function (err, req, res) {
res.writeHead(500, {
'Content-Type': 'text/plain'
});

res.end('Something went wrong. And we are reporting a custom error message.');
});

onProxyRes 监听proxy的回应事件

1
2
3
proxy.on('proxyRes', function (proxyRes, req, res) {
console.log('RAW Response from the target', JSON.stringify(proxyRes.headers, true, 2));
});

onProxyReq: 监听proxy的请求事件

1
2
3
proxy.on('proxyReq', function onProxyReq(proxyReq, req, res) {
proxyReq.setHeader('x-added', 'foobar');
});

onProxyReqWs

1
2
3
function onProxyReqWs(proxyReq, req, socket, options, head) {
proxyReq.setHeader('X-Special-Proxy-Header', 'foobar');
}

onOpen: 监听来自目标服务器的信息

1
2
3
proxy.on('open', function (proxySocket) {
proxySocket.on('data', hybiParseAndLogMessage);
});

onClose: 链接断开

1
2
3
proxy.on('close', function (res, socket, head) {
console.log('Client disconnected');
});