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-ios-webview-cache-cleaner-plugin

v6.0.0

Published

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

Downloads

45

Readme

capacitor-ios-webview-cache-cleaner-plugin

Clear IOS WebViews cache of your app. Nothing here for Android, sorry.

Oh, iOS has its very special way of handling hybrid app caching and, well, those beloved webviews of theirs. You might just be pleasantly surprised that after publishing your app successively on the emulator, TestFlight, or the App Store, you'll find it a tad challenging to flush out those app-stored elements.

But fear not, here's a method for clearing that cache at your leisure.

Install

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

Examples

I recommend something like:

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

// ...

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

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
  ) {}


  /**
   * check if the current build version+env is the same as the one stored in storage
   * @returns Promise<true> if storage has been cleared, false otherwise
   */
  async clearStorageOnVersionChange(): Promise<boolean> {
    // if key doesn’t exist, store current build version and return false
    const { value: keys } = await SecureStoragePlugin.keys();
    if (!keys.includes(MAP_BUILD_VERSION_KEY)) {
      return SecureStoragePlugin.set({ key: MAP_BUILD_VERSION_KEY, value: this.currentMobileAppBuildVersion }).then(
        () => false
      );
    }

    // if there is a stored build version, check it
    return SecureStoragePlugin.get({ key: MAP_BUILD_VERSION_KEY }).then((version) => {
      // if it’s empty or different from current build version, deeply clear all storages and return true
      if (!version.value || version.value !== this.currentMobileAppBuildVersion) {
        return this.clearAllLocalData()
          .then(() => SecureStoragePlugin.set({ key: MAP_BUILD_VERSION_KEY, value: this.currentMobileAppBuildVersion }))
          .then(() => true);
      }
      // if it’s the same, don’t do anything and return false
      return false;
    });
  }

  /**
   * 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.getPlatform() === 'ios') {
      await CapacitorIosWebviewCacheCleaner.clearWebViewCache();
    }
    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

clearWebViewCache()

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

Returns: Promise<{ value: string; }>