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

@hasnat/http-stale-cache-proxy

v0.2.0

Published

A non-compliant HTTP caching proxy that excels at serving stale cached content, while keeping its cache updated asynchronously.

Downloads

3

Readme

http-stale-cache-proxy

A non-compliant HTTP caching proxy that excels at serving stale cached content, while keeping its cache updated asynchronously.

The basic behavior of this proxy is:

  • Non-cached content is transparently proxied (using node-http-proxy).
    • Successful GET or HEAD requests will be cached for subsequent use.
  • Cached content will be delivered from the cache.
    • While delivering cached content to the client, the original request is also proxied to the backend. Once received, the new response will replace the existing data in the cache.
  • Cache-Control and other standard HTTP cache headers are ignored.

The use case for this is to serve up cached content for unreasonably slow backend servers where stale content may be okay. Each time a request is made, the user receives the last cached response. Each request made also asynchronously refresh the cache. This generally means that after the first request, the user is always receiving the cached response for the previously made request.

Usage

var httpStaleCacheProxy = require('http-stale-cache-proxy');

httpStaleCacheProxy.createServer({
  changeOrigin: true,
  noRefresh: false,
  target: {
    host: 'example.com',
    port: 80,
  }
}).listen(8000);

Target property can be a function where first parameter is request

var httpStaleCacheProxy = require('http-stale-cache-proxy');
var url = require('url');

httpStaleCacheProxy.createServer({
  changeOrigin: true,
  noRefresh: false,
  target: function(req) {
    var parsedUrl = url.parse(req.url);
    return {
      host: parsedUrl.hostname,
      port: parsedUrl.port || 80
    }
  }
}).listen(8000);

Request can be made using a custom agent e.g.

var httpStaleCacheProxy = require('http-stale-cache-proxy');
var needle = require('needle');

httpStaleCacheProxy.createServer({
  changeOrigin: true,
  noRefresh: false,
  requestAgent: function(request, response, options) {
    needle('get', request.url)
        .then(function(res) { res.pipe(response); })
        .catch(function(res) { res.writeHead(500, "Server Error"); res.end(); });        
  }
}).listen(8000);

Options

  • noRefresh : if true, proxy will prevent himself from getting an updated version of the request and serve the last cached response directly
  • requestAgent: custom agent to do request instead of using proxyRequest

Why another proxy?

What's the point of this when there's plenty of other great caching servers available?

  • Varnish: Varnish's grace mode can deliver stale content, but only when a request is already open that will refresh the cache. The request that's actually preforming the refresh will not benefit from any cached results. However, this appears to be changing with Varnish 4. I wasn't able to stably run Varnish from master, but once that's released, that may eliminate the need for this project.
  • Squid: Squid 2 appeared to have a stale-while-revalidate feature that did exactly this. However, this feature has never been implemented in Squid 3. My attempts at using this feature on Squid 2 were unsuccessful.
  • nginx: Similar to Varnish 3's grace mode, nginx's proxy-cache_use_stale is only effective while the cache is currently being updated (but the request performing the update will not benefit from the cache).