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

@capgo/capacitor-asset-cache

v8.1.1

Published

Capacitor plugin for transparent local caching of large images and videos.

Readme

@capgo/capacitor-asset-cache

Transparent persistent media cache for Capacitor images, videos, and other large CDN assets.

Why Asset Cache?

@capgo/capacitor-asset-cache lets app code ask for a media source and bind it directly to an <img>, <video>, React component, Vue template, or any other web UI.

  • Pass a CDN path like videos/intro.mp4 and get a local display-ready URL back.
  • Uses persistent app storage: iOS Application Support and Android internal files.
  • src(...) and resolve(...) only resolve after a local file exists; if the plugin cannot create a local file, the call rejects.
  • bind(...) updates an image or video element from loading to ready when the local file is available.
  • Supports cache-only, TTL, ETag, Last-Modified, and always-revalidate modes.
  • Keeps lower-level get, list, remove, and clear helpers for advanced cache management.

The cache is removed when the app is uninstalled, but it is not stored in the platform cache directory that the system may flush under pressure.

Documentation

The most complete doc is available here: https://capgo.app/docs/plugins/asset-cache/

Compatibility

| Plugin version | Capacitor compatibility | Maintained | | -------------- | ----------------------- | ---------- | | v8.*.* | v8.*.* | Yes | | v7.*.* | v7.*.* | On demand |

Install

npm install @capgo/capacitor-asset-cache
npx cap sync

Usage

Configure the CDN once, then bind media elements to CDN paths. The element only receives the local webview URL after the native fetch is done.

import { AssetCache } from '@capgo/capacitor-asset-cache';

AssetCache.configure({
  cdnUrl: 'https://cdn.example.com/assets/',
  revalidate: {
    strategy: 'ttl',
    maxAgeSeconds: 86400,
  },
});

const video = document.querySelector('video');
if (video) {
  AssetCache.bind(video, 'videos/intro.mp4');
}
video[data-asset-cache-state='loading'],
img[data-asset-cache-state='loading'] {
  opacity: 0.4;
}

video[data-asset-cache-state='ready'],
img[data-asset-cache-state='ready'] {
  opacity: 1;
}

React

import { useEffect, useRef } from 'react';
import { AssetCache } from '@capgo/capacitor-asset-cache';

AssetCache.configure({ cdnUrl: 'https://cdn.example.com/assets/' });

export function HeroImage() {
  const imageRef = useRef<HTMLImageElement>(null);

  useEffect(() => {
    if (!imageRef.current) return;

    const binding = AssetCache.bind(imageRef.current, 'hero.jpg');
    return () => binding.cancel();
  }, []);

  return <img ref={imageRef} alt="" />;
}

Vue

<script setup lang="ts">
import { onMounted, onUnmounted, ref } from 'vue';
import { AssetCache, type AssetCacheBinding } from '@capgo/capacitor-asset-cache';

const image = ref<HTMLImageElement | null>(null);
let binding: AssetCacheBinding | undefined;

onMounted(() => {
  if (image.value) {
    binding = AssetCache.bind(image.value, 'hero.jpg', {
      cdnUrl: 'https://cdn.example.com/assets/',
    });
  }
});

onUnmounted(() => binding?.cancel());
</script>

<template>
  <img ref="image" alt="" />
</template>

Direct Source

Use src(...) when your framework already manages loading state. It resolves only after the local file is ready.

const src = await AssetCache.src('images/hero.jpg');

Protected Assets

Pass headers to the native fetch. The web element receives only the local file URL returned by the plugin.

const src = await AssetCache.src('private/videos/intro.mp4', {
  cdnUrl: 'https://cdn.example.com/assets/',
  headers: {
    Authorization: `Bearer ${token}`,
  },
});

Inspect the Resolution

Use resolve(...) when you also want metadata about the local file resolution.

const source = await AssetCache.resolve('images/hero.jpg');

console.log(source.src, source.fromCache, source.status);

Advanced Cache Control

Use get(...) directly only when you need the raw native file metadata.

const asset = await AssetCache.get({
  url: 'https://example.com/videos/intro.mp4',
  key: 'intro.mp4',
  revalidate: { strategy: 'etag' },
});

Platform notes

  • iOS stores files under Application Support and excludes the cache root from iCloud backup.
  • Android stores files under the app internal files directory.
  • Web uses the browser Cache API and localStorage metadata as a development fallback.

API

Persistent asset cache for large Capacitor images, videos, and other media.

configure(...)

configure(options: AssetCacheConfigOptions) => void

Set defaults for future src(...), resolve(...), and bind(...) calls.

| Param | Type | | ------------- | --------------------------------------------------------------------------- | | options | AssetCacheConfigOptions |


resolve(...)

resolve(path: AssetCacheSourceInput, options?: AssetCacheSourceOptions | undefined) => Promise<ResolvedAssetSource>

Resolve a CDN path or remote URL into a local display-ready source URL.

| Param | Type | | ------------- | --------------------------------------------------------------------------- | | path | AssetCacheSourceInput | | options | AssetCacheSourceOptions |

Returns: Promise<ResolvedAssetSource>


src(...)

src(path: AssetCacheSourceInput, options?: AssetCacheSourceOptions | undefined) => Promise<string>

Resolve a CDN path or remote URL into a local string ready for img.src or video.src.

| Param | Type | | ------------- | --------------------------------------------------------------------------- | | path | AssetCacheSourceInput | | options | AssetCacheSourceOptions |

Returns: Promise<string>


bind(...)

bind(element: AssetCacheBindableElement, path: AssetCacheSourceInput, options?: AssetCacheBindOptions | undefined) => AssetCacheBinding

Bind an image or video element to a local asset and update it when ready.

| Param | Type | | ------------- | ----------------------------------------------------------------------- | | element | any | | path | AssetCacheSourceInput | | options | AssetCacheBindOptions |

Returns: AssetCacheBinding


get(...)

get(options: GetAssetOptions) => Promise<CachedAsset>

Resolve an asset URL into a local persistent file.

| Param | Type | | ------------- | ----------------------------------------------------------- | | options | GetAssetOptions |

Returns: Promise<CachedAsset>


remove(...)

remove(options: AssetCacheKeyOptions) => Promise<RemoveAssetResult>

Remove one cached asset by key or URL.

| Param | Type | | ------------- | --------------------------------------------------------------------- | | options | AssetCacheKeyOptions |

Returns: Promise<RemoveAssetResult>


clear()

clear() => Promise<ClearCacheResult>

Remove every cached asset managed by this plugin.

Returns: Promise<ClearCacheResult>


list()

list() => Promise<AssetCacheListResult>

List cached assets that still exist on disk.

Returns: Promise<AssetCacheListResult>


getCacheSize()

getCacheSize() => Promise<AssetCacheSizeResult>

Return total cached asset bytes.

Returns: Promise<AssetCacheSizeResult>


getPluginVersion()

getPluginVersion() => Promise<PluginVersionResult>

Returns the platform implementation version marker.

Returns: Promise<PluginVersionResult>


Interfaces

AssetCacheConfigOptions

Shared defaults used by AssetCache.src(...) and AssetCache.resolve(...).

| Prop | Type | Description | | ---------------- | ----------------------------------------------------------------------------------- | -------------------------------------------------- | | cdnUrl | string | Base CDN URL used when path is relative. | | revalidate | AssetCacheRevalidateOptions | Default revalidation behavior for resolved assets. |

AssetCacheRevalidateOptions

Revalidation options for cached assets.

| Prop | Type | Description | Default | | ------------------- | ------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------- | | strategy | AssetCacheRevalidateStrategy | never returns the local file when present. ttl re-downloads after maxAgeSeconds. always revalidates on every call and sends known validators. etag and last-modified use the matching HTTP validator when present. | 'never' | | maxAgeSeconds | number | Freshness window in seconds for the ttl strategy. | |

ResolvedAssetSource

Result returned by AssetCache.resolve(...).

| Prop | Type | Description | | --------------- | --------------------------------------------------- | --------------------------------------------------------------------------------------------------- | | src | string | Local URL ready to assign to HTMLImageElement.src, HTMLVideoElement.src, or framework bindings. | | path | string | Original path passed by the caller. | | remoteUrl | string | Fully resolved remote URL used by the native fetch. | | key | string | Stable cache key used when one is known. | | local | true | Always true for successful resolve(...) calls. | | fromCache | boolean | True when the persistent local copy already existed before this call. | | status | 'hit' | 'downloaded' | 'notModified' | Result of the local source resolution. | | asset | CachedAsset | Native cached asset payload for the local file. |

CachedAsset

A cached asset stored in app-owned persistent storage.

| Prop | Type | Description | | ------------------ | --------------------------------------------------- | ---------------------------------------------------------------- | | key | string | Stable cache key used by the plugin. | | url | string | Original remote URL. | | path | string | Absolute native filesystem path. | | uri | string | File URI that can be passed to Capacitor.convertFileSrc. | | mimeType | string | Best known MIME type from the HTTP response. | | etag | string | Last known HTTP ETag validator. | | lastModified | string | Last known HTTP Last-Modified validator. | | size | number | File size in bytes. | | updatedAt | number | Unix timestamp in milliseconds for the last successful download. | | checkedAt | number | Unix timestamp in milliseconds for the last cache check. | | fromCache | boolean | True when the returned asset came from local persistent storage. | | status | 'hit' | 'downloaded' | 'notModified' | Result of the cache lookup. |

ResolveAssetSourceOptions

Input used by AssetCache.src(...) and AssetCache.resolve(...).

| Prop | Type | Description | | ---------- | ------------------- | ----------------------------------------------------------------------------------- | | path | string | CDN-relative path or absolute remote URL for an image, video, or other media asset. |

AssetCacheSourceOptions

Per-asset options used by AssetCache.src(...) and AssetCache.resolve(...).

| Prop | Type | Description | | ------------- | --------------------------------------- | ------------------------------------------------------------------------------- | | key | string | Stable cache key. Include a file extension when the URL path does not have one. | | headers | { [key: string]: string; } | HTTP headers sent while fetching or revalidating the asset. |

AssetCacheBinding

Binding returned by AssetCache.bind(...).

| Prop | Type | Description | | ------------- | ---------------------------------------------------------------------------------- | --------------------------------------------------------------------- | | promise | Promise<ResolvedAssetSource> | Resolves with the local source metadata after the element is updated. |

| Method | Signature | Description | | ---------- | ------------- | ------------------------------------------------------------------ | | cancel | () => void | Prevents this binding from updating the element after it resolves. |

AssetCacheBindOptions

Options used by AssetCache.bind(...).

| Prop | Type | Description | Default | | -------------------- | ------------------- | ------------------------------------------------------------ | ------------------------------------- | | stateAttribute | string | Attribute updated with loading, ready, or error. | 'data-asset-cache-state' | | loadingClass | string | Class added while the local file is being fetched. | | | readyClass | string | Class added after the local file is assigned to the element. | | | errorClass | string | Class added when local resolution fails. | |

GetAssetOptions

Options used to resolve a remote asset into a local persistent file.

| Prop | Type | Description | | ---------------- | ----------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | url | string | Remote asset URL. | | key | string | Stable cache key. If omitted, the plugin uses a SHA-256 hash of url. Include a file extension when the asset will be used directly in an &lt;img&gt; or &lt;video&gt; tag. | | headers | { [key: string]: string; } | HTTP headers sent while fetching or revalidating the asset. | | revalidate | AssetCacheRevalidateOptions | Controls when an existing persistent file should be checked again. |

RemoveAssetResult

Remove result.

| Prop | Type | Description | | ------------- | -------------------- | ---------------------------------------------------- | | removed | boolean | True when a cached file or its metadata was removed. |

AssetCacheKeyOptions

Identifies an asset by cache key or by URL. key wins when both are set.

| Prop | Type | Description | | --------- | ------------------- | ------------------------------------------------ | | key | string | Stable cache key. | | url | string | Remote asset URL used to derive the default key. |

ClearCacheResult

Clear result.

| Prop | Type | Description | | ------------- | ------------------- | -------------------------------- | | removed | number | Number of cached assets removed. |

AssetCacheListResult

List result.

| Prop | Type | Description | | ------------ | -------------------------- | -------------------------------------------- | | assets | CachedAsset[] | Cached assets that still have files on disk. |

AssetCacheSizeResult

Cache size result.

| Prop | Type | Description | | ---------- | ------------------- | --------------------------------- | | size | number | Total cached asset size in bytes. |

PluginVersionResult

Plugin version payload.

| Prop | Type | Description | | ------------- | ------------------- | ----------------------------------------------------------- | | version | string | Version identifier returned by the platform implementation. |

Type Aliases

AssetCacheRevalidateStrategy

Revalidation mode used when an asset already exists in persistent storage.

'never' | 'ttl' | 'always' | 'etag' | 'last-modified'

AssetCacheSourceInput

Convenience input accepted by AssetCache.src(...) and AssetCache.resolve(...).

string | ResolveAssetSourceOptions

AssetCacheBindableElement

Element supported by AssetCache.bind(...).

HTMLImageElement | HTMLVideoElement