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-reverse-proxy

v1.0.0

Published

reverse proxy for localhost endpoints

Downloads

5

Readme

backend-reverse-proxy

Intended for accessing web applications running on development machines at localhost from remote clients such as mobile devices, virtual machines, etc.

In general, serves as an HTTP reverse proxy together with backend-local-forward-proxy through long polling. So remote client (e.g. mobile device) makes HTTP requests to running instance of this project, which then gets transferred to backend-local-forward-proxy for delivery to actual target web appliation.

Setup

Launch from example directory with

npm install
npm start

See .env.sample for environment variables which can be used to configure the application. The most important of them are

  • REQUEST_TIMEOUT_MILLIS. default is 20 seconds.
  • POLL_WAIT_TIME_MILLIS. default is 5 seconds.

In general, it is expected that this project will be hosted on the Internet, so that all manner of remote clients can assess it.

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 continuously polls reverse-proxy, 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 makes normal http request to reverse-proxy, and transfers received response headers and body to it (or transfers through web socket connection).

  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

Adapt the code from example as needed. The methods provided by this library are:

setupTransfers(
    requestTimeoutMillis: number,
    pollWaitTimeMillis: number,
    pickUpConfirmationTimeoutMillis: number): void;

setupLogger(
    enableVerboseLogs: boolean,
    omitTimestampInLogs: boolean): void;

configureExpress(
    expressApp: any,
    jsonMiddlewareParser: any,
    generalPrefix: string, // can be empty if not needed
    reqHeadersPrefix: string,
    reqBodyPrefix: string,
    resHeadersPrefix: string,
    resBodyPrefix: string,
    transferErrorPrefix: string
): void;

configureSocketIoStream(
    client: any // must be socket.io connection received by server,
    remoteWorkerAddress: string, // can be empty if unknown
    reqHeadersPrefix: string,
    reqBodyPrefix: string,
    resHeadersPrefix: string,
    resBodyPrefix: string,
    transferErrorPrefix: string
): void;