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-plugin-recaptcha

v7.2.2

Published

Capacitor plugin for reCAPTCHA Enterprise

Readme

npm version MIT license CI

A cross-platform Capacitor plugin for integrating Google reCAPTCHA Enterprise into your web, Android, and iOS apps.


About This Plugin

Capacitor Plugin reCAPTCHA Enterprise enables you to easily integrate Google reCAPTCHA Enterprise in your Capacitor-based apps. It provides a simple, unified API for Web, Android, and iOS platforms.

Why use this plugin?

  • Unified API for all platforms
  • Secure, production-ready integration
  • Designed for backend token assessment

Prerequisites & Platform-specific Notes

Android

  • Your app's package name must be whitelisted in your reCAPTCHA site key settings in Google Cloud Console.
  • Follow the Android setup instructions.

iOS

  • Your app's bundle identifier must be whitelisted in your reCAPTCHA site key settings.
  • You must follow the iOS setup instructions in detail:
    • Add the App Attest capability to your app.
    • Configure the required entitlements and provisioning profiles.
    • Ensure your app is signed with the correct Apple Developer Team.
    • See the official iOS documentation for all required steps.

Web

  • No extra setup needed beyond providing your reCAPTCHA Enterprise site key.
  • See recaptcha-v3 npm package for more details.

Backend Token Verification Example

After you obtain a token from the plugin, you must verify and assess it on your backend using the Google reCAPTCHA Enterprise API.

See the official Google documentation: Create an assessment (Node.js)

TypeScript/Node.js Example for Verifying a reCAPTCHA Enterprise Token

First, install the required package:

npm install @google-cloud/recaptcha-enterprise

Here's a TypeScript/Node.js example for verifying a reCAPTCHA Enterprise token:

import { RecaptchaEnterpriseServiceClient } from '@google-cloud/recaptcha-enterprise';

static verifyRecaptchaEnterprise = async (token: string, siteKey: string, expectedAction = 'LOGIN'): Promise<boolean> => {
  try {
    const projectId = firebaseServiceAccount.project_id;
    if (!projectId || !siteKey) {
      throw new Error('Google Cloud project ID not set or site key is missing.');
    }

    const client = new RecaptchaEnterpriseServiceClient({
      credentials: {
        // Use your credentials or set the GOOGLE_APPLICATION_CREDENTIALS environment variable
        client_email: firebaseServiceAccount.client_email,
        private_key: firebaseServiceAccount.private_key,
      },
      projectId: firebaseServiceAccount.project_id,
    });

    const [assessment] = await client.createAssessment({
      parent: `projects/${projectId}`,
      assessment: {
        event: {
          token,
          siteKey,
        },
      },
    });

    // Check for valid token and action match
    const { tokenProperties, riskAnalysis } = assessment;
    if (!tokenProperties || !tokenProperties.valid) {
      console.error('Invalid or missing reCAPTCHA token properties:', tokenProperties?.invalidReason);
      return false;
    }
    if (tokenProperties.action !== expectedAction.toLowerCase()) {
      console.error('reCAPTCHA action mismatch:', tokenProperties.action);
      return false;
    }

    // You can adjust the threshold as needed (0.5 is a common default)
    const score = riskAnalysis?.score ?? 0;
    return score >= 0.5;
  } catch (error) {
    console.error('Error verifying reCAPTCHA Enterprise:', error);
    return false;
  }
};

Key points:

  • Always verify the token and action server-side.
  • Assess the risk score and handle accordingly.
  • Never trust the token or score on the client.
  • You must use your Google Cloud project credentials.

Maintainers

| Maintainer | GitHub | Social | | -----------| -------| -------| | Szabolcs Fruhwald (szab100) | szab100 | @szab100 |

Installation

npm install capacitor-plugin-recaptcha
npx cap sync

API

Usage

load(...)

load(options: { siteKey: string; }) => Promise<void>

Loads the reCAPTCHA SDK or native client with the given siteKey. Must be called during app startup before any execute calls.

| Param | Type | | ------------- | --------------------------------- | | options | { siteKey: string; } |


execute(...)

execute(options: { action: string; }) => Promise<{ token: string; siteKey: string; }>

Executes reCAPTCHA Enterprise with the given action and returns a token.

| Param | Type | | ------------- | -------------------------------- | | options | { action: string; } |

Returns: Promise<{ token: string; siteKey: string; }>