Cloudflare Turnstile integration for Nuxt 3
- 💪 smart verification with minimal user interaction
- 🕵️♀️ privacy-focused approach
- ✨ server validation helper for your nitro endpoints
- ⚡️ lightweight - script only loaded when required
-
First, follow these steps to obtain a free sitekey and secret key from Cloudflare.
-
Install and add
nuxt-turnstile
to yournuxt.config
.# Whichever matches your package manager pnpm add -D nuxt-turnstile npm install -D nuxt-turnstile yarn add -D nuxt-turnstile
export default defineNuxtConfig({ modules: ['nuxt-turnstile'], runtimeConfig: { turnstile: { secretKey: process.env.NUXT_TURNSTILE_SECRET_KEY || '', }, }, turnstile: { siteKey: '<your-site-key>', }, })
Tip: At runtime you can override site and secret keys with the
NUXT_TURNSTILE_SECRET_KEY
andNUXT_PUBLIC_TURNSTILE_SITE_KEY
environment variables.
To use Turnstile, add the auto-imported Vue component in whatever component needs it:
<template>
<div>
<form @submit.prevent="onSubmit">
<Turnstile v-model="token" />
<input type="submit" />
</form>
</div>
</template>
<Turnstile>
can take a number of options via the options
argument. See all options. It renders the Turnstile <iframe>
within a <div>
wrapper by default, but you can configure this by setting the element
prop.
When in the page, it will automatically load the Turnstile script and validate your user. Each validation lasts for 300s, and nuxt-turnstile
will automatically revalidate this token after 250s.
You can access the validation token by setting a v-model
on the component. Then, send the token along with your form responses, either explicitly or automatically (Cloudflare adds a hidden form element with the name cf-turnstile-response
to your form). To validate the token on server-side, you can use the auto-imported verifyTurnstileToken
utility in your Nitro server routes.
- Clone this repository
- Enable Corepack using
corepack enable
(usenpm i -g corepack
for Node.js < 16.10) - Install dependencies using
pnpm install
- Stub module with
pnpm dev:prepare
- Run
pnpm dev
to start playground in development mode
- inspired by laravel-cloudflare-turnstile
Made with ❤️
Published under the MIT License.