JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 553387
  • Score
    100M100P100Q170981F
  • License BSD

http(s) proxy as connect middleware

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

Build Status

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.