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

recaptcha-frontend

v2.0.2

Published

ES module for the Google reCAPTCHA frontend integration.

Downloads

53

Readme

Google reCAPTCHA v3 - Frontend Integration

npm npm bundle size (minified)

ES module for the Google reCAPTCHA v3 frontend integration.

  • Only supports reCAPTCHA Enterprise as Classic use is no longer recommended.
  • Supports both score-based and checkbox site-keys;
  • Supports language and render configuration;
  • Supports both the user interaction and HTML button models;
  • Exposes all methods of the API;
  • Loads the script asynchronously and automatically appends resource hints for improved performance.

Install

$ npm install --save recaptcha-frontend

Usage

Pick your favorite:

const { execute, load } = require("recaptcha-frontend");
import { execute, load } from 'recaptcha-frontend';

... then:

load('site-key').then(() => {
    // The API is loaded and ready.

    execute('homepage').then(token => {
        // Send `token` to your backend for verification.
    });
});

API

load(siteKey, [{lang, recaptchaNet = false, render}])

  • siteKey (string) Your reCAPTCHA site key.
  • options
    • lang (string) Which reCAPTCHA language to use. Defaults to the browser language when not specified.
    • recaptchaNet (boolean) Whether to use the recaptcha.net alternate endpoint to load the API.
    • render(string) The value for the render parameter. Defaults to siteKey, which only works with score-based site keys. Use 'onload' or 'explicit' for checkbox site keys. See this for more details.

Returns: (Promise) The fulfillement handler (then) is called when the API is loaded and ready.

Loads the API.

execute(action, [siteKey]) | execute([widget_id])

  • action (string) The action to execute.

  • siteKey (string) Your reCAPTCHA site key. Defaults to the site key provided to load().

  • widget_id (number) The widget ID returned by render(). Defaults to the ID of the first widget that was created.

Returns: (Promise) The fulfillment handler (then) receives a single token parameter that can be used for verification.

Executes an action.

render(...), reset(...), ready(...) and getResponse(...)

All these methods mirror the signatures of the reCAPTCHA methods of the same names. Only execute() is different.

showBadge()

Shows the reCAPTCHA badge.

hideBadge()

Hides the reCAPTCHA badge. This requires the reCAPTCHA branding to be included visibly in the user flow.