Socket
Socket
Sign inDemoInstall

react-google-recaptcha-hook

Package Overview
Dependencies
5
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-google-recaptcha-hook

React Hook for Google reCAPTCHA v3


Version published
Maintainers
1
Install size
11.4 kB
Created

Readme

Source

React Hook for Google reCAPTCHA V3

https://www.google.com/recaptcha/intro/v3.html

Features

  • ⚛ React 18 support
  • ✨ Simple and Easy
  • 🦋 Lightweight
  • 🟢 Zero dependencies
  • ⬇️ Asynchronous APIs

Install

npm install react-google-recaptcha-hook

Simplest Example

import { useGoogleReCaptcha } from "react-google-recaptcha-hook";

const FormComponent = () => {
  const { executeGoogleReCaptcha } = useGoogleReCaptcha(SITE_KEY);

  const submit = async () => {
    const token = await executeGoogleReCaptcha(ACTION_NAME);

    // Do whatever you want with the token
  };

  return <button onClick={submit}>SUBMIT</button>;
};

Usage

const {
  // execute reCAPTCHA with action, return token
  // async (action: string) => Promise<string>
  executeGoogleReCaptcha,
  // hide / show recaptcha-badge
  // async () => Promise<void>
  hideGoogleReCaptcha,
  showGoogleReCaptcha,
} = useGoogleReCaptcha(
  `${YOUR_SITE_KEY}`, // your site key
  {
    hide: `${BOOLEAN}`, // optional, true if you want to hide recaptcha-badge beforehand
    language: `${LANGUAGE_CODE}`, // optional, https://developers.google.com/recaptcha/docs/language
    enterprise: `${BOOLEAN}`, // optional, true if you want to use enterprise edition
    recaptchaNet: `${BOOLEAN}`, // optional, true if you want to use recaptcha.net instead of google.com
  },
);

Note

You are allowed to hide the badge as long as you include the reCAPTCHA branding visibly in the user flow.

See: https://developers.google.com/recaptcha/docs/faq#id-like-to-hide-the-recaptcha-badge.-what-is-allowed

Keywords

FAQs

Last updated on 04 May 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc