Socket
Socket
Sign inDemoInstall

nuxt-hcaptcha-module

Package Overview
Dependencies
148
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    nuxt-hcaptcha-module

Nuxt hCaptcha integration module


Version published
Weekly downloads
1
Maintainers
1
Created
Weekly downloads
 

Changelog

Source

v0.0.5

compare changes

🏡 Chore

  • Update dependencies (6b7534c)
  • Update prepack script (5429402)

❤️ Contributors

Readme

Source

Nuxt hCaptcha

npm version npm downloads License Nuxt

🚧 Note: This project is currently under development and not yet production ready.

Nuxt module that allows to protect your website from bots. Heavily inspired by Nuxt Turnstile.

Quick Setup

  1. Add nuxt-hcaptcha-module dependency to your project
# Using pnpm
pnpm add -D nuxt-hcaptcha-module

# Using yarn
yarn add --dev nuxt-hcaptcha-module

# Using npm
npm install --save-dev nuxt-hcaptcha-module
  1. Add nuxt-hcaptcha-module to the modules section of nuxt.config.ts
export default defineNuxtConfig({
  modules: [
    'nuxt-hcaptcha-module'
  ]
})
  1. Set siteKey and secretKey generated in hCaptcha dashboard
export default defineNuxtConfig({
  modules: ["nuxt-hcaptcha-module"],
  hcaptcha: {
    siteKey: 'YOUR_SITE_KEY',
    secretKey: 'YOUR_SECRET_KEY'
  }
});

You can also use environment variables:

HCAPTCHA_SITE_KEY=YOUR_SITE_KEY
HCAPTCHA_SECRET_KEY=YOUR_SECRET_KEY
  1. Use NuxtHCaptcha component in your application
<template>
  <form @submit.prevent="sendForm">
    <!-- put your form fields here -->
    <NuxtHCaptcha v-model="form.token" />
    <button>submit</button>
  </form>
</template>

<script setup>
const form = ref({
  token: ''
})

async function sendForm () {
  await $fetch('/api/your-api-endpoint', {
    method: 'POST',
    body: form.value
  })
}
</script>
  1. Use verifyHCaptchaToken to validate hCaptcha token (only when you use server routes)
// server/api/your-api-endpoint.ts
export default defineEventHandler(async (event) => {
  const body = await readBody(event)
  const captchaResponse = await verifyHCaptchaToken(body.token)

  // return an error when hCaptcha detects a bot
  if (!captchaResponse.success) {
    return createError({
      statusCode: 401
    })
  }

  // handle logic for verified user, for example:
  // await createUser({ user: body.user })

  return ({ success: true })
})

Development

# Install dependencies
npm install

# Generate type stubs
npm run dev:prepare

# Develop with the playground
npm run dev

# Build the playground
npm run dev:build

# Run ESLint
npm run lint

# Run Vitest
npm run test
npm run test:watch

# Release new version
npm run release

Keywords

FAQs

Last updated on 07 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc