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

capacitor-firebase-appcheck

v1.0.10

Published

Integrates native AppCheck functionality with CapacitorJS Hybrid Applications

Readme

capacitor-firebase-appcheck

All Contributors

Allows usage of native AppCheck tokens in a Capacitor Hybrid application. From the Firebase Docs:

App Check works alongside other Firebase services to help protect your backend resources from abuse, such as billing fraud or phishing.

Install

npm install capacitor-firebase-appcheck
npx cap sync

Prereqs

You must enable AppCheck within your Firebase Project before installing this plugin. The location for both iOS and Android is the same, but the requirements for both are slightly different. See below for getting AppCheck set up in your console (note, you only need to follow step one as this plugin takes the place of everything after):

Set up AppCheck on iOS with AppAttest (>iOS 14)

Set up AppCheck on iOS with DeviceCheck (<iOS 14)

Set up AppCheck on Android with SafetyNet

iOS

For iOS, you need to ensure firebase is set up in your project before continuing. You can use this link to the iOS Firebase Docs to see how to set up your project.

Android

For Android, you also need to ensure firebase is set up in your project before continuing. You can use this link to the Android Firebase Docs (Step 3) to see how to set up your project.

Usage

// import firebase and appcheck
import { firebase } from 'firebase';
import { AppCheck } from 'capacitor-firebase-appcheck';

try {
  // initialise AppCheck
  AppCheck.initialize({
    // enable debugging if in staging or dev environments. Default is false.
    debug: true
  });

  // create custom appcheck provider
  const appCheckCustomProvider = {
    getToken: async () => {
      // get the token from native
      const { token, exp: expTimeMillis } = await AppCheck.getAppCheckToken();

      return {
        token,
        expireTimeMillis
      }
    }
  }

  // activate appcheck [set true to refresh the token automatically on expiry]
  firebase.appCheck().activate(appCheckCustomProvider, true);


} catch (err) {
  // log any errors
  console.error(err);
}

API

initialize(...)

initialize(options?: InitializationOptions | undefined) => Promise<boolean>

A method to initialise the AppCheck plugin. This must be called once and once only before calling any other method. Returns true on success or false on failure. Check native logs to see the actual problem.

| Param | Type | | ------------- | ----------------------------------------------------------------------- | | options | InitializationOptions |

Returns: boolean

Since: 1.0.0


getAppCheckToken()

getAppCheckToken() => Promise<AppCheckToken>

Get's the native AppCheck token from AppAttest/DeviceCheck on iOS[>=14/<14] or SafetyNet on Android.

Returns: Promise<AppCheckToken>

Since: 1.0.0


Interfaces

InitializationOptions

| Prop | Type | Description | Since | | ----------- | -------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----- | | debug | boolean | If debug is enabled, the native environment will log debug creds and use debug mode. Intended to be used with staging or development environmnets only. Do not set this to TRUE in production. | 1.0.0 |

AppCheckToken

| Prop | Type | Description | Since | | ---- | ---- | ----------- | ----- | | token | string | The token provided by the native environment to be sent to firebase. | 1.0.0 | | exp | number | The expiration date of the token in milliseconds since epoch [Unix time] | 1.0.0 |

Contributors ✨

Thanks goes to these wonderful people (emoji key):

This project follows the all-contributors specification. Contributions of any kind welcome!