npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

backend-local-forward-proxy

v1.0.4

Published

counterpart to backend-reverse-proxy for exposing localhost backends online

Downloads

11

Readme

backend-local-forward-proxy

Works together with backend-reverse-proxy to provide http proxy for web applications running on localhost.

Setup

Launch with

npm install backend-local-forward-proxy # assumes existing project 
                                        # to install into
node_modules/.bin/local-forward-proxy

Or install globally with

npm install -g backend-local-forward-proxy
local-forward-proxy

The configuration for the script is dependent on environment variables. As a convenience, the current directory from which local-forward-proxy script is launched can contain .env.json and .env files for completing the setup.

See .env and .env.json for available environment variables to use. The most important of them is CONNECTION_INFO_LIST, which has to be set for the application to run. Also available is REQUEST_TIMEOUT_MILLIS, which defaults to 10 seconds.

The CONNECTION_INFO_LIST environment variable is a JSON array (or serialised JSON array), where each array item has 3 fields:

  • targetAppId: uuid/guid identifying a target url to a backend-reverse-proxy instance.
  • reverseProxyBaseUrl: backend-reverse-proxy base url
  • targetAppBaseUrl: target web application base url

To "comment out" an item in the array, include an exclude field in the item which is set to true.

Architecture

architecture diagram

  1. remote client makes http request to running instance of backend-reverse-proxy on the Internet. reverse-proxy records http request and puts remote client on hold, waiting for local-forward-proxy to pick it up for processing.

  2. backend-local-forward-proxy makes the equivalent of http long polling of reverse-proxy (done efficiently with web socket), and eventually discovers and picks up http request headers and body from remote client.

  3. local-forward-proxy makes normal http request to target localhost service (the one remote client actually wants to reach but cannot reach directly) using received request headers and body.

  4. target localhost service responds to local-forward-proxy with http response headers and body.

  5. local-forward-proxy transfers received response headers and body to reverse proxy through the equivalent of a normal http request (once again done efficiently with web socket).

  6. reverse-proxy wakes up remote client and transfers received response headers and body to it as its final response.

Remote clients make http request to backend-reverse-proxy deployments at paths with prefix/base of the form /main-[target_app_id], where target_app_id is a uuid/guid configured at a running backend-local-forward-proxy instance to map to a given target app base url.

By this arrangement, a single online remote proxy deployment can serve multiple localhost proxies, as long as each localhost proxy is careful to use a different set of uuids/guids.

API

Although the entire language above refers to project as running on localhost, actually this project can be deployed online and still used to target apps which are accessible to the deployment, but inaccessible to remote clients (e.g. behind firewall or VPN).

To help with that, adapt the code from bin/local-forward-proxy.js as needed. The most important class/function provided is:

class DuplexAgent {
    constructor(targetAppId: string,
        reverseProxyBaseUrl: string,
        targetAppBaseUrl: string,
        requestTimeoutMillis?: number);
    stop(): void;
    start(): void;
    adjustReverseProxyPaths(
        reqHeadersPrefix: string,
        reqBodyPrefix: string,
        resHeadersPrefix: string, 
        resBodyPrefix: string,
        transferErrorPrefix: string,
        webSocketPath?: string): void;
}