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

@varbyte/nest-worker-cache

v0.1.0

Published

Caching middleware for @varbyte/nest-worker — Cloudflare Cache API and KV strategies

Readme

@varbyte/nest-worker-cache 🗄️

Caching middleware for @varbyte/nest-worker — Cloudflare Cache API and KV strategies.

npm version License: MIT

Features

  • Cloudflare Cache API — Edge caching with no extra cost
  • KV Cache — Persistent, configurable caching for dynamic content
  • Custom TTL — Per-route or global expiration
  • Custom Cache Keys — Derive keys from request URL, headers, or params
  • Cache Invalidation — By header or explicit API
  • Stale-while-revalidate — Serve stale data while fetching fresh content

Installation

npm install @varbyte/nest-worker-cache

Quick Start

Global middleware (all GET responses)

import { cacheMiddleware } from '@varbyte/nest-worker-cache';
import { createApplication } from '@varbyte/nest-worker';

const app = createApplication(AppModule);

// Cache all GET responses for 1 hour via Cloudflare Cache API
app.use(cacheMiddleware({ ttl: 3600 }));

export default app.handler;

Per-route with custom key and KV backend

import { cacheMiddleware } from '@varbyte/nest-worker-cache';
import { Controller, Get, UseMiddleware } from '@varbyte/nest-worker';

@Controller('products')
export class ProductsController {
  @Get()
  @UseMiddleware(cacheMiddleware({
    ttl: 60,
    storage: 'kv',
    kvBinding: 'PRODUCTS_CACHE',
    keyBy: (req) => `/products${req.url.search}`,
  }))
  async getAll() {
    // This response will be cached in KV for 60 seconds
    return { data: await fetch('https://api.example.com/products') };
  }
}

Using withCache for precise control

import { withCache } from '@varbyte/nest-worker-cache';

export default {
  async fetch(req, env, ctx) {
    return withCache(req, env, ctx, { ttl: 3600 }, async () => {
      return app.handler(req, env, ctx);
    });
  },
};

Cache invalidation

import { invalidateCache } from '@varbyte/nest-worker-cache';

// Invalidate a specific URL in the cache
await invalidateCache(env, '/products/123', 'kv', 'PRODUCTS_CACHE');

// Or send a request with x-cache-invalidate header
// GET /products/123 with header: x-cache-invalidate: true

API Reference

cacheMiddleware(options?)

Creates a MiddlewareFn that caches responses based on the given options.

| Option | Type | Default | Description | |--------|------|---------|-------------| | ttl | number | 3600 | Time-to-live in seconds | | storage | 'cache-api' \| 'kv' | 'cache-api' | Cache storage backend | | keyBy | (req) => string | (req) => req.url | Custom cache key function | | kvBinding | string | — | KV namespace binding name (required for kv storage) | | cacheableStatuses | number[] | [200] | Only cache these status codes | | staleWhileRevalidate | boolean | false | Enable stale-while-revalidate | | methods | string[] | ['GET'] | HTTP methods to cache |

withCache(req, env, ctx, options, handler)

Wraps a response producer with caching logic.

invalidateCache(env, url, storage?, kvBinding?)

Explicitly invalidates a cached entry.

Strategies

Cache API ('cache-api')

Uses caches.default to store responses at the Cloudflare edge. Fastest option, no additional cost.

KV ('kv')

Uses a KV namespace for persistent caching. Requires a KV namespace binding in wrangler.toml:

[[kv_namespaces]]
binding = "PRODUCTS_CACHE"
id = "YOUR_KV_NAMESPACE_ID"

License

MIT © Daniel Vargas