@jscarle/vue3-turnstile
v1.0.5
Published
A Vue 3.5 TypeScript component for Cloudflare's Turnstile.
Maintainers
Readme
vue3-turnstile
A Vue 3.5.17 TypeScript component for Cloudflare's Turnstile.
Requires Vue 3.5.17 or later and @unhead/vue 2.0.12 or later.
Overview
vue3-turnstile wraps the Cloudflare Turnstile widget in a strongly typed Vue component. It exposes the Turnstile API methods as component methods and can be configured via component props or plugin defaults. Component props take precedence over plugin defaults.
Installation
npm install @jscarle/vue3-turnstileUsage
Component usage
<script setup lang="ts">
import { TurnstileWidget } from '@jscarle/vue3-turnstile'
const token = ref<string | null>(null)
</script>
<template>
<TurnstileWidget v-model="token" sitekey="your-site-key" />
</template>Registering globally
To make <TurnstileWidget /> available in all components:
import { createApp } from 'vue'
import App from './App.vue'
import { TurnstilePlugin } from '@jscarle/vue3-turnstile'
createApp(App).use(TurnstilePlugin).mount('#app')TurnstilePlugin installs the TurnstileWidget component globally and injects
default options for all widget props. Component props take priority over these
options, which therefore act as fallbacks for each <TurnstileWidget /> instance:
createApp(App).use(TurnstilePlugin, {
sitekey: 'your-site-key',
logLevel: 'debug',
})Customization
Global defaults passed to the plugin apply to every widget. Component props take precedence over these defaults, enabling per-instance configuration.
Test sitekeys
The library exports constants for Cloudflare's test sitekeys:
| Constant | Value | Description |
| --- | --- | --- |
| TEST_SITEKEY_ALWAYS_PASS | 1x00000000000000000000AA | Always passes (visible) |
| TEST_SITEKEY_ALWAYS_BLOCK | 2x00000000000000000000AB | Always blocks (visible) |
| TEST_SITEKEY_ALWAYS_PASS_INVISIBLE | 1x00000000000000000000BB | Always passes (invisible) |
| TEST_SITEKEY_ALWAYS_BLOCK_INVISIBLE | 2x00000000000000000000BB | Always blocks (invisible) |
| TEST_SITEKEY_CHALLENGE | 3x00000000000000000000FF | Forces an interactive challenge |
Component props
| Prop | Type | Default | Description |
| --- | --- | --- | --- |
| sitekey | string | Test key that always passes | Cloudflare Turnstile site key |
| action | string | - | Widget analytics action name |
| cData | string | - | Custom payload returned on validation |
| logLevel | 'debug' \| 'info' \| 'warn' \| 'error' | info | Browser log level |
| language | Language | auto | Widget language |
| theme | 'auto' \| 'light' \| 'dark' | auto | Widget theme |
| tabindex | number | 0 | iframe tabindex |
| size | 'normal' \| 'compact' \| 'flexible' | normal | Widget size |
| retry | 'never' \| 'auto' | auto | Automatically retry on failure |
| retry-interval | number | 8000 | Milliseconds between retries |
| appearance | 'always' \| 'execute' \| 'interaction-only' | always | When the widget is visible |
| refresh-expired | 'never' \| 'manual' \| 'auto' | auto | Refresh behavior when token expires |
| refresh-timeout | 'never' \| 'manual' \| 'auto' | auto | Refresh behavior on timeout |
| execution | 'render' \| 'execute' | render | When to obtain the widget token |
| feedback-enabled | boolean | true | Allow Cloudflare feedback |
Events
The component emits the following events:
success(response: string)– emitted when the visitor solves the challenge. The returned token is also available viav-modeland should be sent to Cloudflare for verification.error(error: string)– emitted when a runtime error occurs while obtaining a token.expired– emitted when the token is no longer valid but the widget has not been reset.unsupported– emitted if the visitor's browser is unsupported by Cloudflare Turnstile.timeout– emitted when the interactive challenge was not solved in time.failed(error: unknown)– emitted if loading the widget fails entirely.
Use these events to react to the widget state and handle failures gracefully.
<script setup lang="ts">
function onSolved(token: string) {
// send token to your server
}
function onError(message: string) {
console.error(message)
}
</script>
<template>
<TurnstileWidget
@success="onSolved"
@error="onError"
@expired="() => console.log('expired')"
@timeout="() => console.log('timeout')"
@failed="err => console.error('load failed', err)"
/>
</template>Token Verification
Validate the response token on your server by sending it to Cloudflare's siteverify endpoint:
const params = new URLSearchParams()
params.append('secret', 'your-secret-key')
params.append('response', token)
const result = await fetch('https://challenges.cloudflare.com/turnstile/v0/siteverify', {
method: 'POST',
body: params,
})
.then(r => r.json())
if (!result.success) {
// token is invalid
}Tokens must be validated within 300 seconds and cannot be reused.
Contributing
Issues and pull requests are welcome. Feel free to open a ticket if you discover an issue or have a feature request.
License
This project is licensed under the MIT License.
