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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@canner-ca/astro-cache

v0.1.0

Published

One-line cache headers for Canner — set Cache-Control + Surrogate-Key correctly so Canner caches and purges your pages by tag.

Downloads

176

Readme

@canner-ca/astro-cache

One-line cache headers for Canner. It sets Cache-Control and Surrogate-Key exactly the way Canner's cache proxy expects, so your server-rendered pages cache on Canner and purge by tag from your CMS — without you memorizing header names or formats.

Works with any framework (it only touches the Web Headers API), but it's built for Astro + a headless CMS like DatoCMS.

Install

npm install @canner-ca/astro-cache

Requires Node.js 20 or later. Zero runtime dependencies.

Use it

---
// src/pages/blog/[slug].astro
import { cache } from '@canner-ca/astro-cache';

const post = await getPost(Astro.params.slug);

// Cache this response on Canner for an hour, tagged so a publish can clear it.
cache(Astro.response, { ttl: 3600, tags: [post.id, 'blog-listing'] });
---

That sets:

Cache-Control: public, s-maxage=3600
Surrogate-Key: <post.id> blog-listing

When the post changes, your DatoCMS webhook purges tag <post.id> (Canner reads the changed record automatically) and Canner clears every page carrying it. Add blog-listing to your listing page and to the purge to clear the index too.

Full integration guide (the webhook setup, the dashboard token): https://canner.ca/docs/caching

API

cache(target, options)

target is a Response, Astro.response, or a Headers. Returns the Headers.

applyCacheHeaders(headers, options)

Same thing, lower-level, when you already hold a Headers instance.

options

| Option | Type | Notes | |---|---|---| | ttl | number (required) | Seconds Canner may serve the cached response. Sets s-maxage. Positive integer. | | tags | string \| number \| Array<string \| number> | Tags for purging. Sets Surrogate-Key. Numbers are coerced to strings; duplicates and whitespace-containing tags are dropped. | | browserTtl | number | Optional. Seconds the visitor's browser may cache (sets max-age). Omit to let the browser revalidate while Canner serves from cache — keeps purges instant. |

What it caches (and what it won't)

A response is cached by Canner only when all of these hold — the same rules this helper produces:

  • method GET/HEAD, status 200
  • Cache-Control: public with a positive s-maxage (or max-age)
  • no Set-Cookie
  • Vary absent or only Accept-Encoding
  • body under 8 MB

It only ever adds headers

This package never strips or mutates anything your app set. In particular it does not remove Set-Cookie: Canner already declines to cache a response that sets a cookie, so the only safe thing to do is tell you. If you call cache() on a response that sets a cookie, you'll get a development-only warning explaining it won't be cached — your cookie is left untouched.

Invalid input degrades gracefully too: a bad ttl sets no cache headers (the page still renders, just uncached) and warns in dev. Only passing something that isn't a Response/Headers throws.

Non-goals

  • It doesn't configure your CMS webhook — that's two copy-paste values in the Canner dashboard (Settings → Caching).
  • It doesn't implement stale-while-revalidate; after a purge the next request re-renders once and re-caches.

License

MIT