Socket
Socket
Sign inDemoInstall

vanilla-hcaptcha

Package Overview
Dependencies
0
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    vanilla-hcaptcha

Vanilla Web Component for hCaptcha. 0 dependencies. <1kb gzipped.


Version published
Maintainers
1
Created

Readme

Source

hCaptcha - Vanilla Web Component

0 dependencies. It loads hcaptcha.min.js if not already present on dom.

Install

yarn add vanilla-hcaptcha
<script src="https://cdn.jsdelivr.net/npm/vanilla-hcaptcha/dist/hcaptcha-component.min.js"></script>

Usage

<h-captcha id="signupCaptcha"
           site-key="10000000-ffff-ffff-ffff-000000000001"
           size="normal"
           dark
           tabindex="0" />

const signupCaptcha = document.getElementById('signupCaptcha');

signupCaptcha.addEventListener('loaded', () => {
    signupCaptcha.render(); // Show captcha
});
signupCaptcha.addEventListener('verified', (e) => {
    console.log('verified event', { key: e.key });
});
signupCaptcha.addEventListener('expired', () => {
    console.log('expired event');
});
signupCaptcha.addEventListener('error', (e) => {
    console.log('error event', { error: e.error });
});

Attributes

AttributeDescription
site-keyThe site key generated in hCaptcha dashboard.
sizeOne of: normal, compact, invisible
darkTo use the dark theme
tabindexSet the tabindex of the hCaptcha popup.

Events

EventDataDescription
loadednullEmitted when component is ready to show captcha. This is necessary if window.hcaptcha is not already in the dom.
verifiedkey - verification key to be checked on backend sideEvent emitted after captcha was successfully verified.
expirednullEmitted when a captcha was verified but it expired.
errorerrorEmitted when an error happened.

Develop & Test

yarn build
yarn test

Keywords

FAQs

Last updated on 26 Jun 2020

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