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

turnstile

Important

Please read this article to learn more.

Setup

Deno

import { turnstile } from 'https://den.ooo/turnstile'

Node.js

npm i @boywithkeyboard/turnstile
import { turnstile } from '@boywithkeyboard/turnstile'

Usage

// e.g.
async function handleRequest(req) {
  const body = await req.formData()

  const result = await turnstile.verify({
    secret: '...',
    response: body.get('cf-turnstile-response'),
    ip: req.headers.get('cf-connecting-ip')
  })
}