v0.13.0
- feat(context): custom context matcher; when simple
path
matching is not sufficient. #59
Example:
var filter = function (path, req) {
return (path.match('^/api') && req.method === 'GET');
};
var apiProxy = proxyMiddleware(filter, {target: 'http://www.example.org'});