koa-http2-proxy
Configure http2-proxy middleware with ease for koa.
Based on http-proxy-middleware.
TL;DR
Proxy requests to http://www.example.org
var Koa = require('koa');
var proxy = require('koa-http2-proxy');
var app = new Koa();
app.use(proxy({ target: 'http://www.example.org' }));
app.listen(3000);
:bulb: Tip: Set the option changeOrigin
to true
for name-based virtual hosted sites.
Table of Contents
Install
$ npm install --save-dev koa-http2-proxy
Core concept
Proxy middleware configuration.
proxy([context,] config)
var proxy = require('koa-http2-proxy');
var apiProxy = proxy('/api', { target: 'http://www.example.org' });
- context: Determine which requests should be proxied to the target host.
(more on context matching)
- options.target: target host to proxy to. (protocol + host)
(full list of koa-http2-proxy
configuration options)
proxy(uri [, config])
var apiProxy = proxy('http://www.example.org/api');
More about the shorthand configuration.
Example
var Koa = require('koa');
var proxy = require('koa-http2-proxy');
var options = {
target: 'http://www.example.org',
ws: true,
pathRewrite: {
'^/api/old-path': '/api/new-path',
'^/api/remove/path': '/path'
},
router: {
'dev.localhost:3000': 'http://localhost:8000'
}
};
var exampleProxy = proxy(options);
var app = new Koa();
app.use(exampleProxy);
app.listen(3000);
Context matching
Providing an alternative way to decide which requests should be proxied; In case you are not able to use the server's path
parameter to mount the proxy or when you need more flexibility.
RFC 3986 path
is used for context matching.
foo://example.com:8042/over/there?name=ferret#nose
\_/ \______________/\_________/ \_________/ \__/
| | | | |
scheme authority path query fragment
-
path matching
proxy({...})
- matches any path, all requests will be proxied.proxy('/', {...})
- matches any path, all requests will be proxied.proxy('/api', {...})
- matches paths starting with /api
-
multiple path matching
proxy(['/api', '/ajax', '/someotherpath'], {...})
-
wildcard path matching
For fine-grained control you can use wildcard matching. Glob pattern matching is done by micromatch. Visit micromatch or glob for more globbing examples.
proxy('**', {...})
matches any path, all requests will be proxied.proxy('**/*.html', {...})
matches any path which ends with .html
proxy('/*.html', {...})
matches paths directly under path-absoluteproxy('/api/**/*.html', {...})
matches requests ending with .html
in the path of /api
proxy(['/api/**', '/ajax/**'], {...})
combine multiple patternsproxy(['/api/**', '!**/bad.json'], {...})
exclusion
Note: In multiple path matching, you cannot use string paths and wildcard paths together.
-
custom matching
For full control you can provide a custom function to determine which requests should be proxied or not.
var filter = function(pathname, req) {
return pathname.match('^/api') && req.method === 'GET';
};
var apiProxy = proxy(filter, { target: 'http://www.example.org' });
Options
-
option.pathRewrite: object/function, rewrite target's url path. Object-keys will be used as RegExp to match paths.
pathRewrite: {'^/old/api' : '/new/api'}
pathRewrite: {'^/remove/api' : ''}
pathRewrite: {'^/' : '/basepath/'}
pathRewrite: function (path, req) { return path.replace('/api', '/base/api') }
-
option.router: object/function, re-target option.target
for specific requests.
router: {
'integration.localhost:3000' : 'http://localhost:8001',
'staging.localhost:3000' : 'http://localhost:8002',
'localhost:3000/api' : 'http://localhost:8003',
'/rest' : 'http://localhost:8004'
}
router: function(req) {
return 'http://localhost:8004';
}
-
option.logLevel: string, ['debug', 'info', 'warn', 'error', 'silent']. Default: 'info'
-
option.logProvider: function, modify or replace log provider. Default: console
.
function logProvider(provider) {
return require('winston');
}
function logProvider(provider) {
var logger = new (require('winston')).Logger();
var myCustomProvider = {
log: logger.log,
debug: logger.debug,
info: logger.info,
warn: logger.warn,
error: logger.error
};
return myCustomProvider;
}
-
option.onError: function, subscribe to http-proxy's error
event for custom error handling.
function onError(err, ctx) {
ctx.response.status = 500;
ctx.response.body =
'Something went wrong. And we are reporting a custom error message.';
}
-
option.onProxyRes: function, subscribe to http-proxy's proxyRes
event.
function onProxyRes(proxyRes, ctx) {
proxyRes.headers['x-added'] = 'foobar';
delete proxyRes.headers['x-removed'];
}
-
option.onProxyReq: function, subscribe to http-proxy's proxyReq
event.
function onProxyReq(proxyReq, ctx) {
proxyReq.setHeader('x-added', 'foobar');
}
-
option.onUpgrade: function, called before upgrading a websocket connection.
onUpgrade: async ctx => {
await session(ctx, () => {});
};
-
option.app: koa app, used to generate a koa ctx to be used in onUpgrade. If left blank, a object containing only req
will be used as context
-
option.headers: object, adds request headers. (Example: {host:'www.example.org'}
)
-
option.target: url string to be parsed with the url module
-
option.ws: true/false: if you want to proxy websockets
-
option.xfwd: true/false, adds x-forward headers
-
option.changeOrigin: true/false, Default: false - changes the origin of the host header to the target URL
-
option.proxyTimeout: timeout (in millis) when proxy receives no response from target
-
option.proxyName: Proxy name used for Via header
Shorthand
Use the shorthand syntax when verbose configuration is not needed. The context
and option.target
will be automatically configured when shorthand is used. Options can still be used if needed.
proxy('http://www.example.org:8000/api');
proxy('http://www.example.org:8000/api/books/*/**.json');
proxy('http://www.example.org:8000/api');
WebSocket
proxy('/', { target: 'http://echo.websocket.org', ws: true });
proxy('http://echo.websocket.org', { ws: true });
proxy('ws://echo.websocket.org');
External WebSocket upgrade
In the previous WebSocket examples, http-proxy-middleware relies on a initial http request in order to listen to the http upgrade
event. If you need to proxy WebSockets without the initial http request, you can subscribe to the server's http upgrade
event manually.
var wsProxy = proxy('ws://echo.websocket.org');
var app = new Koa();
app.use(wsProxy);
var server = app.listen(3000);
server.on('upgrade', wsProxy.upgrade);
Tests
Run the test suite:
$ yarn
$ yarn lint
$ yarn lint:fix
$ yarn build
$ yarn test
$ yarn cover
Changelog
License
The MIT License (MIT)
Copyright for portions of this project are held by Steven Chim, 2015-2019 as part of http-proxy-middleware. All other copyright for this project are held by Ontola BV, 2019.