1.0.0 • Published 4 years ago

hcaptcha-test-keys v1.0.0

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

hcaptcha-test-keys

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

Provided by hCaptcha in their documentation.

Installation

npm install --save hcaptcha-test-keys

Usage

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

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

// etc

API

testKeys.sitekey

Site key: 10000000-ffff-ffff-ffff-000000000001

testKeys.secret

Secret key: 0x0000000000000000000000000000000000000000

Related

License

Unlicense