Socket
Socket
Sign inDemoInstall

@dkx/http-middleware-proxy

Package Overview
Dependencies
9
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @dkx/http-middleware-proxy

Proxy middleware for @dkx/http-server


Version published
Weekly downloads
7
increased by600%
Maintainers
1
Install size
532 kB
Created
Weekly downloads
 

Readme

Source

DKX/Http/Middleware/Proxy

Proxy middleware for @dkx/http-server.

Installation

$ npm install --save @dkx/http-middleware-proxy

or with yarn

$ yarn add @dkx/http-middleware-proxy

Usage

const {Server} = require('@dkx/http-server');
const {proxyMiddleware} = require('@dkx/http-middleware-proxy');

const app = new Server;
const proxyOptions = {
    host: 'http://example.com',
    timeout: 5000,
    passHeaders: ['X-Custom-header'],
    passAllHeaders: true
};

app.use(proxyMiddleware(proxyOptions));

Only the host option is required.

FAQs

Last updated on 18 Oct 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc