Package Exports
- proxy-middleware
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (proxy-middleware) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Usage:
var connect = require('connect')
, url = require('url')
, proxy = require('proxy-middleware')
var app = connect();
app.use('/api', proxy(url.parse("https://example.com/endpoint")));
// now requests to "/api/x/y/z" are proxied to "https://example.com/endpoint/x/y/z"
Documentation:
proxyMiddleware(options)
options
allows any options that are permitted on the http
or https
request options.