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

@anilkumarthakur/vue3-recaptcha

v0.0.6

Published

This plugin provides a Vue 3 component and plugin for integrating Google reCAPTCHA V3. The plugin enables easy reCAPTCHA token generation, management, and configuration within a Vue 3 application.

Downloads

355

Readme

Vue 3 reCAPTCHA V3 Plugin

This plugin provides a Vue 3 component and plugin for integrating Google reCAPTCHA V3. The plugin enables easy reCAPTCHA token generation, management, and configuration within a Vue 3 application.

Features

  • Dynamic reCAPTCHA Token Generation: Automatically generates and manages reCAPTCHA tokens.
  • Flexible Plugin Options: Configure siteKey and action globally or per component.
  • Reusability: Exposes methods (loadRecaptcha, executeRecaptcha, initializeRecaptcha) for fine-grained control over reCAPTCHA.

Installation

  1. Install the Plugin

    npm install @anilkumarthakur/vue3-recaptcha
  2. Set up reCAPTCHA in the main file
    Import and use the plugin in your main application file (e.g., main.js or main.ts):

    import { createApp } from 'vue'
    import App from './App.vue'
    import { recaptchaPlugin } from '@anilkumarthakur/vue3-recaptcha'
    
    const app = createApp(App)
    
    app.use(recaptchaPlugin, {
      siteKey: 'your_site_key_here',
      action: 'homepage'
    })
    
    app.mount('#app')
  3. Add the RecaptchaV3 Component to a View

    Use the RecaptchaV3 component within your Vue components to generate and manage reCAPTCHA tokens.

    <template>
      <RecaptchaV3 v-model="recaptchaToken" />
    </template>
    
    <script setup lang="ts">
    import { ref } from 'vue'
    import { RecaptchaV3 } from '@anilkumarthakur/vue3-recaptcha'
    
    const recaptchaToken = ref<string>('')
    
    // Watch recaptchaToken for updates as tokens are generated
    </script>

Plugin API

Plugin Options

When installing the plugin, you can provide a configuration object:

| Option | Type | Description | |------------|--------|-----------------------------------------------------------| | siteKey | string | Your Google reCAPTCHA V3 site key. | | action | string | Action description for reCAPTCHA (e.g., "homepage"). |

These options will be globally accessible to all RecaptchaV3 instances in the application.

Component API: RecaptchaV3

The RecaptchaV3 component provides a wrapper for reCAPTCHA V3 and includes several exposed methods.

Props

| Prop | Type | Description | |--------------|--------|-----------------------------------------------------------| | modelValue | string | The reCAPTCHA token, generated and updated automatically. | | siteKey | string | (Optional) Override the globally defined siteKey. | | action | string | (Optional) Override the globally defined action. |

Events

| Event | Payload | Description | |----------------------|-------------|-----------------------------------| | update:modelValue | string | Emits the generated reCAPTCHA token when it is updated. |

Exposed Methods

The RecaptchaV3 component exposes several methods for interacting with reCAPTCHA.

  1. loadRecaptcha(): Loads the reCAPTCHA API script if not already loaded and initializes reCAPTCHA.
  2. executeRecaptcha(): Executes the reCAPTCHA with the configured site key and action, returning a token.
  3. initializeRecaptcha(): Initializes the reCAPTCHA instance if it's ready to generate a token.

Example usage in a Vue component:

<script setup lang="ts">
import { ref, onMounted } from 'vue'
import { RecaptchaV3 } from '@anilkumarthakur/vue3-recaptcha'

const recaptchaComponent = ref<InstanceType<typeof RecaptchaV3> | null>(null)
const recaptchaToken = ref<string>('')

const initializeRecaptcha = async () => {
  await recaptchaComponent.value?.loadRecaptcha()
}

onMounted(initializeRecaptcha)
</script>

<template>
  <RecaptchaV3 v-model="recaptchaToken" ref="recaptchaComponent" />
</template>

TypeScript

The plugin and component include TypeScript types:

  • RecaptchaPluginOptions: Type for plugin installation options (siteKey and action).
  • RecaptchaComponentProps: Type for RecaptchaV3 component props.

Global Definitions

Add the following to your global.d.ts to enable TypeScript support for grecaptcha on window:

declare global {
  interface Window {
    grecaptcha: {
      ready: (callback: () => void) => void
      execute: (siteKey: string, options: { action: string }) => Promise<string>
    }
  }
}