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/nuxt-cache

v0.1.0

Published

One-line cache headers for Canner — set Cache-Control + Surrogate-Key in Nuxt pages, server routes, and middleware so Canner caches and purges your pages by tag.

Readme

@canner-ca/nuxt-cache

One-line cache headers for Canner, for Nuxt. It sets Cache-Control and Surrogate-Key exactly the way Canner's cache proxy expects, so your pages cache on Canner and purge by tag from your CMS.

Install

npm install @canner-ca/nuxt-cache

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

Use it

Pages (<script setup>) — pass the request event. On the client it's undefined, so the call is a safe no-op:

<script setup>
import { cache } from '@canner-ca/nuxt-cache';

const route = useRoute();
const { data: post } = await useAsyncData(() => fetchPost(route.params.slug));

cache(useRequestEvent(), { ttl: 3600, tags: [post.value.id, 'blog-listing'] });
</script>

Server routes (server/api/**, server/routes/**):

import { cache } from '@canner-ca/nuxt-cache';

export default defineEventHandler((event) => {
  cache(event, { ttl: 3600, tags: ['blog-listing'] });
  return getPosts();
});

Server middleware (server/middleware/**) — set caching for matching paths:

import { cache } from '@canner-ca/nuxt-cache';

export default defineEventHandler((event) => {
  if (event.path.startsWith('/blog/')) {
    cache(event, { ttl: 3600, tags: ['blog-listing'] });
  }
});

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

Why it's safe with Nuxt

Nuxt mostly "just works": client navigation fetches payloads from separate URLs, so a page URL only ever returns its HTML document. The one same-URL exception is the SPA shell Nuxt returns when a request sends x-nuxt-no-ssr — Canner's proxy passes those requests straight through, so only the real server-rendered document is ever cached. You don't configure any of that.

API

cache(target, options)

target is an H3Event, a Node ServerResponse, a Response/Headers, or null/undefined (a no-op). Returns the same target.

applyCacheHeaders(headers, options)

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; duplicates and whitespace tags are dropped. | | browserTtl | number | Optional. Seconds the visitor's browser may cache (sets max-age). Omit to keep tag purges instant. |

What Canner caches

The same rules this helper produces:

  • method GET/HEAD, status 200, no x-nuxt-no-ssr request header
  • 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. It does not remove Set-Cookie: Canner already declines to cache a response that sets a cookie, so you get a development-only warning instead — your cookie is left untouched. A bad ttl sets no headers and warns; a null target is a no-op (the client render pass); only passing something that isn't a supported target 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.

Also available: @canner-ca/astro-cache and @canner-ca/next-cache.

License

MIT