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

vapr-caching

v0.2.0

Published

A Vapr plugin that sets HTTP caching headers

Downloads

3

Readme

vapr-caching Build Status

Installation

npm install --save vapr
npm install --save vapr-caching

Usage

This plugin provides some convenience functions for setting HTTP caching headers (Cache-Control). Although setting headers is a simple task, it's common for people to use caching headers incorrectly, which can be avoided by using this plugin.

const caching = require('vapr-caching');
const app = require('vapr')();
const route = app.get('/foo');

route.use(caching.never());
route.use((req) => { ... });

There are three different configurations to choose from, list below.

caching.never([options])

Disables all caching, including any caching done by ETags (e.g., vapr-conditionals). This configuration should only be used to satisfy strict security requirements, as it can result in unnecessary bandwidth usage. If you need your content to always be up-to-date, it's probably better to use .private() or .shared() with a duration of 0.

route.use(caching.never());

caching.private([options])

Disables shared caches (e.g., CDNs) but enables private caches (e.g., browsers). This configuration should be used when the content being served varies depending on which user requested it. The duration option determines how many seconds the content should be cached for.

route.use(caching.private({ duration: 60 }));

If you need your content to always be up-to-date, use a duration of 0.

caching.shared([options])

Enables both shared caches (e.g., CDNs) and private caches (e.g., browsers). This configuration should be used when the content being served does not vary depending on which user requested it. The duration option determines how many seconds the content should be cached for.

route.use(caching.shared({ duration: 60 }));

If you need your content to always be up-to-date, use a duration of 0.

You can also configure shared caches to have a different duration from private caches by using the sharedDuration option, as shown below.

route.use(caching.shared({
  duration: 0,
  sharedDuration: 60,
}));

Options

The following options can be used with any configuration.

options.condition = default

By default, this plugin will only affect responses whose status codes are defined as being "cacheable by default" by the HTTP specification, as well as 304, in order to support ETags. Specifically, that's 200, 203, 204, 206, 300, 301, 304, 404, 405, 410, 414, and 501.

If you'd like to override this behavior, you can pass a condition function to define your own logic for determining which responses will be affected. The condition function is given a request and a response, and should return true or false.

route.use(caching.shared({
  duration: 60,
  condition: (req, res) => res.code === 200,
}));

Keep in mind that if no caching headers are present on a response that is "cacheable by default", caches may choose to cache it for any arbitrary amount of time, or not at all.

options.allowUnsafe = false

By default, this plugin will not cache responses to POST requests. However, you can set the allowUnsafe option to true to support caching POSTs.

route.use(caching.private({
  duration: 3600,
  allowUnsafe: true,
}));

Remarks

This plugin prevents caches from ever serving stale content (i.e., content whose cache duration has expired), which some caches might try to do in some circumstances. Due to the lack of standards in regards to serving stale content, cache implementations vary wildly in their behavior here. Therefore, in the interest of your application having deterministic behavior, we take the opinionated approach of preventing stale content from ever being served. If you have total control of the caches you're using and you need more customized behavior, you should set the Cache-Control header yourself instead of using this plugin.