Socket
Socket
Sign inDemoInstall

fire-proxy

Package Overview
Dependencies
113
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    fire-proxy

a nodejs module for HTTP proxy library for Express JS


Version published
Weekly downloads
2
decreased by-60%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Fire Proxy

fire-proxy is a nodejs module for HTTP proxy library for Express JS. It using request to steam incoming request to the destination server.

Install

$ npm install --save fire-proxy

Example

const app = express();
const fireProxy = require("fire-proxy");
app.use("./api", fireProxy({
    target: "http://www.google.com.hk" // and other options
}));

Options

  • target - the target URL you want to forward to
  • timeout - integer containing the number of milliseconds to wait for a server to send response headers (and start the response body) before aborting the request. For more detail, click here
  • maxRedirects - the maximum number of redirects to follow, For more detail, click here

TODO:

  • more request option
  • better documentation
  • handle cookies

Keywords

FAQs

Last updated on 03 Jun 2020

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