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

@homer0/fs-cache

v3.1.2

Published

Small cache utility that uses the file system and supports TTL

Downloads

96

Readme

🗄 FS Cache

Small cache utility that uses the file system and supports TTL.

🍿 Usage

  • ⚠️ This package is only for Node.
  • If you are wondering why I built this, go to the Motivation section.

Examples

This would be the basic usage:

import { fsCache } from '@homer0/fs-cache';

const cache = fsCache();

// ... sometime later, because there's not top-level await yet.

const data = await cache.use({
  key: 'my-key',
  init: async () => {
    const res = await fetch('https://example.com');
    const data = await res.json();
    return JSON.stringify(data);
  },
});

You call use with a unique key and a init function, the service will validate if there's a non-expired entry for that, and return it, otherwise it will call the init function and cache it.

JSON

The first example showed a simple example using string, since the use method works by reading and writing strings, but in most real case uses, the data you would want to cache is JSON.

Alternatively to use, you can use useJSON:

const data = await cache.useJSON({
  key: 'my-key',
  init: async () => {
    const res = await fetch('https://example.com');
    return res.json();
  },
});

Custom entries

The useJSON method actually uses a "custom entry" in order to transform the data before saving it, and when reading it back. "Custom entries" are created using useCustom, and they require a serializer and deserializer:

const data = await cache.useCustom({
  key: 'my-key',
  init: async () => {
    const res = await fetch('https://example.com');
    return res.json();
  },
  serialize: JSON.stringify,
  deserialize: JSON.parse,
});

TTL

The service gives you a couple of ways in which you can control the TTL of the entries:

  • In the constructor, you have defaultTTL and maxTTL.
  • In each entry, you can set ttl to override the default TTL.

When an entry is created, a timeout is set to delete the entry after the TTL, but if some some reason the app is restarted, and the in-memory data get lost, the next time the entry is read, the service will validate the modification time of the file and see if it's still valid.

const data = await cache.useJSON({
  key: 'my-key',
  ttl: 60 * 60 * 1000, // 1 hour
  init: async () => {
    const res = await fetch('https://example.com');
    return res.json();
  },
});

Files

By default, all files are stored in a .cache folder, relative to your project root. You can cache the path, by using the path option when initializing the service:

The path will always be relative to the project root.

const cache = fsCache({
  path: 'libs/.my-cache-folder',
});

In memory caching

By default, whenever an entry is created, the service will also store it in memory, so it will be able to respond faster the next time the data is requested.

You can disable this functionality with the keepInMemory option:

const cache = fsCache({
  keepInMemory: false,
});

But have in mind, that when creating an entry, that option can be overwritten (to enable, or disable):

const data = await cache.useJSON({
  key: 'my-key',
  keepInMemory: true,
  init: async () => {
    const res = await fetch('https://example.com');
    return res.json();
  },
});

Removing entries

If you want to ensure an entry is removed from both the file system and memory, you can use the remove method:

await cache.remove('my-key');

But you can also use removeFromMemory, or removeFromFs, to remove the entry from either cache.

When using removeFromFs, the custom options allow you to send a callback to actually evaluate if the entry should be removed. You may be thinking "why would I need the callback if I alaready told the service to remove it?", well, the callback will give you more information about the file, like when was it last modified, its absolute path, and whether or not it's expired.

await cache.removeFromFs('my-key', {
  shouldRemove: async ({ key, filepath, filename, mtime, expired }) => {
    // ...
    return true;
  },
});

And yes, you can also send the same callback to remove.

Purging the cache

You can remove all expired entries from both the file system and the service memory by using the purge method:

await cache.purge();

Now, since the service doesn't know if you overwrote the TTL of any entry, it will use the defaultTTL, or a specified TTL, to decide whether or not the entry is expired:

await cache.purge({
  ttl: 60 * 60 * 1000, // 1 hour
});

And just like with remove, you can also use purgeMemory or purgeFs to purge the entries from either cache.

Cleaning the cache

If you want to remove all entries, regardless of its expiration time, you can use the clean method:

await cache.clean();

Like purge and remove, you have the cache-specific versions: cleanMemory and cleanFs.

Jimple provider

If your app uses a Jimple container, you can register FsCache as the fsCache service by using its provider:

import { fsCacheProvider } from '@homer0/fs-cache';

// ...

container.register(fsCacheProvider);

// ...

const cache = container.get('fsCache');

And since the provider is a "provider creator" (created with my custom version of Jimple), you can customize its service name:

container.register(
  fsCacheProvider({
    serviceName: 'myFsCache',
  }),
);
Dependencies

FsCache depends on the following services, and when used with Jimple, it will try to find them in the container, otherwise, it will create new instances:

  • @homer0/path-utils, with the name pathUtils. Used to generate the paths relative to the project root.

If you already implement the dependencies, but with a different name, you can specify them in the provider:

container.register(
  fsCacheProvider({
    services: {
      pathUtils: 'myPathUtils',
    },
  }),
);

🤘 Development

As this project is part of the packages monorepo, some of the tooling, like lint-staged and husky, are installed on the root's package.json.

Tasks

| Task | Description | | ------------- | ----------------------------------- | | lint | Lints the package. | | test | Runs the unit tests. | | build | Transpiles and bundles the project. | | types:check | Validates the TypeScript types. |

Motivation

While I was working on a small project, I wanted to use the file system as a cache, since the process was being restarted all the time.

I looked in the registry, but all the packages I found required for you to actually tell them when to cache and when to try to read something, and I just wanted something that would abstract that logic for me: a single function, one key and one function, you decide whether you can use the cache or you have to initialize the data.

Since I was migrating bunch of stuff to the monorepo, with TypeScript, and I already wrote it, I decided to make it into a package.