Skip to main content
The Deno 2 Release Candidate is here
Learn more

turnstile

A type-safe module to validate the response of the Cloudflare Turnstile widget on the server.

import * as turnstile from 'https://deno.land/x/turnstile@v0.1.0/mod.ts'

const result = await turnstile.verify({
  secret: '...',
  response: '...',
  ip: '...'
})
Learn more