1.0.1 • Published 4 years ago

recaptcha-test-keys v1.0.1

Weekly downloads
441
License
Unlicense
Repository
github
Last release
4 years ago

recaptcha-test-keys

The ReCaptcha widget keys for testing and development environments, but as a Node.js module with a name.

Provided by Google in the reCAPTCHA documentation.

Installation

npm install --save recaptcha-test-keys

Usage

const testKeys = require('recaptcha-test-keys')

grecaptcha.render('recaptcha-element', {
  sitekey: process.env.NODE_ENV === 'development'
    ? testKeys.sitekey
    : yourActualSiteKey()
})

// or
import { sitekey, secret } from 'recaptcha-test-keys'

// etc

API

testKeys.sitekey

Site key: 6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI

testKeys.secret

Secret key: 6LeIxAcTAAAAAGG-vFI1TnRWxMZNFuojJ4WifJWe

License

Unlicense