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

@vkolegov/nuxt-ssr-cache

v2.1.2

Published

Cache middleware for nuxt's SSR rendering.

Downloads

12

Readme

nuxt-ssr-cache

npm

Cache middleware for nuxt's SSR rendering.

Setup

npm install @vkolegov/nuxt-ssr-cache

or

yarn add @vkolegov/nuxt-ssr-cache

then inside your nuxt.config.js add cache config:

module.exports = {
  // If you provide a version, it will be stored inside cache.
  // Later when you deploy a new version, old cache will be
  // automatically purged.
  version: pkg.version,

  // ....

  modules: [
    [
      '@vkolegov/nuxt-ssr-cache',
      {
        // if you're serving multiple host names (with differing
        // results) from the same server, set this option to true.
        // (cache keys will be prefixed by your host name)
        // if your server is behind a reverse-proxy, please use
        // express or whatever else that uses 'X-Forwarded-Host'
        // header field to provide req.hostname (actual host name)
        useHostPrefix: false,
        prefix: 'custom-prefix',
        store: {
          type: 'memory',

          // maximum number of pages to store in memory
          // if limit is reached, least recently used page
          // is removed.
          max: 100,

          // number of seconds to store this page in cache
          ttl: 60,
        },
      }
    ],
  ],

  // ...
};

and add middleware in your project, for example middleware/ssr-cache.js

contents:

import {makeSsrCacheMiddleware} from '@vkolegov/nuxt-ssr-cache/middleware';

/**
 *
 * @type {PageToCache[]}
 */
const pages = [
    // these are prefixes of pages that need to be cached
    // if you want to cache all pages, just include '/'
    '/page1',
    '/page2',

    // you can also pass a regular expression to test a path
    /^\/page3\/\d+$/,

    // to cache only root route, use a regular expression
    /^\/$/,

    // you can specify custom cache key postfixes for pages using cacheKeyPostfix callback
    // 'url' property is treated like a start of the path, 
    // so this rule will apply for /page/subpage, /page/subpage/subsubpage, etc
    {
      url: '/page',
      cacheKeyPostfix: ctx => {
        return `order_${ctx.store.state.user_id}`;
      },
      ttl: 60 * 30, // 30 minutes
    },
];


export default makeSsrCacheMiddleware(pages, process.server);

redis store

module.exports = {
  // ....
  cache: {
    // ....
    store: {
      type: 'redis',
      host: 'localhost',
      port: 6379,
      ttl: 10 * 60, // default ttl
      configure: [
        // these values are configured
        // on redis upon initialization
        ['maxmemory', '200mb'],
        ['maxmemory-policy', 'allkeys-lru'],
      ],
    },
  },
}

Uses cache-manager-redis under the hood.

memcached store

module.exports = {
  // ....
  cache: {
    // ....
    store: {
      type: 'memcached',
      options: {
        hosts: ['127.0.0.1:11211'],
      },
    },
  },
}

Uses cache-manager-memcached-store under the hood.

multi cache (layered)

module.exports = {
  // ....
  cache: {
    // ....
    store: {
      // multi cache stores pages in all caches
      // later tries to read them in sequential order
      // in this example it first tries to read from memory
      // if not found, it tries to read from redis
      type: 'multi',
      stores: [
        {type: 'memory', /* ... */},
        {type: 'redis', /* ... */},
      ],
    },
  },
}

License

MIT