Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 777 Bytes

File metadata and controls

32 lines (24 loc) · 777 Bytes

dynamic-reverse-proxy-client

A client to dynamic-reverse-proxy.

Usage

var reverseProxyClient = require("dynamic-reverse-proxy-client");

// This is actually the default, but this would be how to change it.
var proxy = {
   host: "localhost",
   port: "80",
   path: "/routes",
   method: "POST"
};

var application = {
   prefix: "/test",
   port: 4321
};

var client = reverseProxyClient({ application: application, proxy: proxy });

client.on("error", function (reason, willRetry) {
   console.log(reason, (willRetry ? "This request will be retried." : "This request will NOT be retried."));
});

client.on("success", function () {
   console.log("Registered.");
});