New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@pardjs/recaptcha-nuxt

Package Overview
Dependencies
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pardjs/recaptcha-nuxt

Simple and easy Google reCAPTCHA integration with Nuxt.js

latest
Source
npmnpm
Version
0.2.2
Version published
Maintainers
2
Created
Source

Google reCAPTCHA

Forked from nuxt-community/recaptcha-module

Used recaptcha.net replace google.com to avoid the forbiden with GFW

npm version npm downloads Circle CI Codecov Dependencies Standard JS

Simple and easy Google reCAPTCHA integration with Nuxt.js

📖 Release Notes

Setup

  • Add @padjs/recaptcha-nuxt dependency with yarn or npm into your project
  • Add @padjs/recaptcha-nuxt to modules section of nuxt.config.js
  • Configure it:
{
  modules: [
    [
      "@padjs/recaptcha-nuxt",
      {
        /* reCAPTCHA options */
      }
    ]
  ];
}

using top level options

{
  modules: [
    '@padjs/recaptcha-nuxt',
  ],

  recaptcha: {
    /* reCAPTCHA options */
  },
}

Configuration

{
  // ...
  recaptcha: {
    hideBadge: Boolean, // Hide badge element (v3)
    siteKey: String,    // Site key for requests
    version: Number,    // Version
  },
  // ...
}

Development

  • Clone this repository
  • Install dependencies using yarn install or npm install
  • Start development server using npm run dev

License

MIT License

Copyright (c) mvrlin mvrlin@pm.me

Keywords

nuxtjs

FAQs

Package last updated on 02 Apr 2019

Did you know?

Socket

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