Turnstile Basic ā€“ SvelteKit + Cloudflare CAPTCHA

A minimal implementation of Cloudflare Turnstile in a SvelteKit project with progressive enhancement (use:enhance). This setup ensures smooth CAPTCHA validation while allowing multiple form submissions.

šŸ“– Read more about this implementation on my Dev.to blog

šŸš€ Features

  • šŸ›”ļø Cloudflare Turnstile integration
  • āš” Progressive enhancement with use:enhance
  • šŸ”„ Allows multiple form submissions without page refresh
  • šŸ—ļø Fake CAPTCHA environment for local development

šŸ“¦ Installation

git clone https://github.com/KevinCotoCarrera/SvelteKit_Turnstile.git
cd turnstile-basic
npm install

šŸ› ļø Setup

  1. Create a .env file and add your Turnstile secret key:

    SECRET_TURNSTILE_KEY=your_real_or_fake_key
    VITE_TURNSTILE_SITEKEY=your_public_site_key
    
  2. Run the development server

    npm run dev
    

šŸ” Key Implementation Details

āœ… Turnstile Validation (Server-side)

async function validateToken(token: string): Promise<boolean> {
    if (SECRET_TURNSTILE_KEY === 'FAKE_SECRET_KEY') return true;

    const response = await fetch('https://challenges.cloudflare.com/turnstile/v0/siteverify', {
        method: 'POST',
        headers: { 'Content-Type': 'application/x-www-form-urlencoded' },
        body: new URLSearchParams({
            secret: SECRET_TURNSTILE_KEY,
            response: token
        })
    });
    const data = await response.json();
    return data.success;
}

šŸ”„ Allowing Multiple Submissions (use:enhance)

$effect(() => {
    if (form) {
        showCaptcha = false;
        setTimeout(() => (showCaptcha = true), 0);
        form = null;
    }
});

šŸ“– Read More on Dev.to

For a deeper explanation, check out my full blog post:
šŸ”— Read the article on Dev.to


šŸ“œ License

This project is licensed under the MIT License. Feel free to use and modify it!


Would you like me to tweak the wording or format to match your style? šŸ˜Š

Top categories

svelte logo

Need a Svelte website built?

Hire a professional Svelte developer today.
Loading Svelte Themes