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

@hitchy/plugin-proxy

v0.2.1

Published

Hitchy plugin forwarding requests to remote servers

Downloads

27

Readme

@hitchy/plugin-proxy pipeline status

Hitchy plugin implementing reverse proxy for redirecting selected requests to remote servers

License

MIT

Installation

npm i @hitchy/plugin-proxy

Configuration

Proxies are defined as part of your application's configuration under top-level name proxy. In compliance with Hitchy's conventions you should create a file config/proxy.js in your Hitchy-based application. The proxy configuration itself is an array of objects each one defining another reverse proxy.

Every such configuration object must consist of these mandatory properties:

  • prefix is declaring a local a routing prefix. All incoming requests matching this prefix are processed as part of this proxy definition.

    Due to the way Hitchy is handling its routing table, other plugins or current application may define more specific prefixes used in preference over any prefix defined here. Thus, it is possible to use prefix / here and still have a local API with prefix /api or similar.

  • target provides base URL of a remote service all processed requests are forwarded to.

In addition, either configuration object may include any of these optional properties:

  • alias is providing one or more aliases. See below for additional information.

  • filters (since v0.2.0) is optionally providing custom callbacks for adjusting header and body of request and/or response on the fly.

    Prior to version v0.2.0, option responseFilter was supported, only. It is called filters.response.header, now.

    • filters.request.header is a function invoked early on receiving request from client to be forwarded to some remote service. It is designed to inspect and adjust client's request header.

      Provided argument is the request originally received from client.

      The function may optionally adjust provided request or return a replacement for it. It may return a promise to delay this information, too.

      filters.request.header = req => {
          if ( req.getHeader( "cookie" ) ) {
              req.removeHeader( "cookie" );
          }
      }
    • filters.request.body is a function invoked on receiving request from client to be forwarded to some remote service. It is expected to return a transform stream instance to be injected into pipeline forwarding the request's body to the remote service.

      Provided argument is the optionally filtered request received from client.

      It may return a transform stream instance to be considered in forwarding the request's payload. On returning any other value, request's payload is forwarded to remote service as-is.

      filters.request.body = req => {
          return new Transform( {
              transform( chunk, encoding, doneFn ) {
                  // TODO implement your transformation per chunk here
                  doneFn( null, chunk );
              }        
          } );
      }
    • filters.response.header is a function invoked early on receiving response from remote service. It is designed to adjust its headers prior to processing and forwarding it to the originally requesting client.

      Provided arguments are

      1. the response received from remote service,
      2. the optionally filtered request originally received from client and
      3. the request forwarded to the remote service.

      The function may optionally adjust response provided in first argument or return a replacement for it. It may return a promise to delay this information, too.

      filters.response.header = res => {
          if ( res.getHeader( "set-cookie" ) ) {
              res.removeHeader( "set-cookie" );
          }
      }
    • filters.response.body is a function invoked on receiving response from remote service to be forwarded to originally requesting client. It is expected to return a transform stream instance to be injected into pipeline forwarding the response's body to the client.

      Provided arguments are

      1. the optionally filtered response received from remote service,
      2. the optionally filtered request originally received from client and
      3. the request forwarded to the remote service.

      It may return a transform stream instance to be considered in forwarding the response's payload. On returning any other value, response's payload is forwarded to remote service as-is.

      filters.response.body = req => {
          return new Transform( {
              transform( chunk, encoding, doneFn ) {
                  // TODO implement your transformation per chunk here
                  doneFn( null, chunk );
              }        
          } );
      }
  • opaque is a boolean switch. When set, forwarded requests don't contain headers exposing IP addresses of actual clients any request has been forwarded for. This includes Forwarded-For,X-Forwarded-For, X-Forwarded-Host, X-Forwarded-Proto and X-Real-IP.

Example

exports.proxy = [
    {
        prefix: "/ddg",
        target: "https://duckduckgo.com/",
        alias: "https://ddg.com/",
    },
    {
        prefix: "/denic",
        target: "https://www.denic.de",
    },
    {
        prefix: "/denic-alt",
        target: "https://www.denic.de",
        filters: {
            response: {
                header( backendResponse ) {
                    if ( backendResponse.statusCode === 401 ) {
                        backendResponse.statusCode = 403;
                        backendResponse.removeHeader( "WWW-Authenticate" );
                    }
                },
            },
        },
        opaque: true,
    },
];

This configuration file is defining three reverse proxies:

  • The first one is forwarding all requests for routes starting with /ddg to the base URL https://duckduckgo.com so that requesting /ddg/assets/dax.svg will eventually deliver the resource available at https://duckduckgo.com/assets/dax.svg.

  • The second one is forwarding requests with prefix /denic to http://www.denic.de.

  • The third one is basically working like second one. However, all responses with status 401 are transformed into responses with status 403.

Aliases

Every proxy may declare one or more aliases used on mapping URls returned from target back into address space used in request sent to the proxy itself. Aliases are useful e.g. to test and develop backends prepared to run at different URL when in production setup.

Example

In first example above a forwarded request might cause response redirecting to URL https://duckduckgo.com/index.html which is translated back to redirecting to /ddg/index.html prior to returning it to the client. However, this translation fails when remote service redirects to https://ddg.com/index.html instead for it is assumed to be an alias for the same site. By adopting this alias in your configuration even this URL gets translated back to /ddg/index.html properly.

Use custom filters as described above for a more sophisticated address translation.