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

capacitor-webview-cache-cleaner-plugin

v6.0.8

Published

Work with the screen orientation in a common way for iOS, Android, and web

Downloads

37

Readme

capacitor-webview-cache-cleaner-plugin

This plugin will not work with Capacitor versions below 6.0.0

iOS has its own method of managing cache and cookies at the OS level for different domains and URLs: both your WebViews and in-app browsers can be affected by this.

Even on Android, it can sometimes be beneficial to perform a thorough flush.

This plugin helps you completely flush all caches and cookies related to your Capacitor application. It's especially useful during a deep logout with third-party URLs, such as Keycloak.

Install

npm install capacitor-webview-cache-cleaner-plugin
npx cap sync

Examples

I recommend something like:

import { CapacitorWebviewCacheCleaner } from 'capacitor-webview-cache-cleaner-plugin';

// ...

if (/* some custom conditional matching the moment you want to flush */) {
    if (this.capacitor.getPlatform() === 'ios') {
      await CapacitorWebviewCacheCleaner.cleanWebViewCache();
    }
}

For instance, in my case, an automatically injected Keycloak configuration into the local storage was never cleared between two app versions or between different environments, causing inconvenience for my users.

Here's an excerpt of the code selected to flush the cache only when there's a version or environment change.

@Injectable()
export class MyService {
  private currentMobileAppBuildVersion: string =
    environment.envName + '-' + packageJson.version + '-' + packageJson.buildIncrementNumber;

  constructor(
    @Inject(CAPACITOR) private readonly capacitor: CapacitorGlobal,
    @Inject(CAPACITOR_PREFERENCES) private readonly preferences: PreferencesPlugin
  ) {}


  /**
   * Clear all data in different storages available on the device (localStorage, sessionStorage, capacitor preferences, secure storage plugin and cookies)
   *
   */
  async clearAllLocalData(): Promise<[{ value: boolean }, void, void]> {
    if (this.capacitor.isNativePlatform()) {
      await CapacitorWebviewCacheCleaner.cleanWebViewCache();
    }
    localStorage.clear(); // web local storage by url
    sessionStorage.clear(); // web local storage by tab, cleared on tab close
    return Promise.all([
      this.preferences.clear(), // Capacitor Preferences clearing
      CapacitorCookies.clearAllCookies() // Cookies clearing
    ]);
  }
}

API

cleanWebViewCache()

cleanWebViewCache() => Promise<{ value: string; }>

Returns: Promise<{ value: string; }>


Dev worklow

npm run verify : builds and tests web and native code npm run fmt : autoformats web and native code npm run lint : lints web and native code npm run docgen : generates documentation from plugin interface (see Documentation) npm run build : builds web code into ESM and bundle distributions

Whenever you are ready to publish your plugin, just use:

npm publish