https://github.com/goto-bus-stop/hcaptcha-test-keys
The hCaptcha widget keys for testing and development environments, but as a Node.js module with a name.
https://github.com/goto-bus-stop/hcaptcha-test-keys
Last synced: 5 months ago
JSON representation
The hCaptcha widget keys for testing and development environments, but as a Node.js module with a name.
- Host: GitHub
- URL: https://github.com/goto-bus-stop/hcaptcha-test-keys
- Owner: goto-bus-stop
- License: unlicense
- Created: 2020-04-10T12:57:01.000Z (over 5 years ago)
- Default Branch: default
- Last Pushed: 2020-04-10T12:57:59.000Z (over 5 years ago)
- Last Synced: 2025-06-09T12:32:24.206Z (6 months ago)
- Language: JavaScript
- Homepage: https://npm.im/hcaptcha-test-keys
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# 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.][ref]
## Installation
```
npm install --save hcaptcha-test-keys
```
## Usage
```js
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
- [recaptcha-test-keys][] - Google ReCaptcha test keys as a Node.js module
## License
[Unlicense](./LICENSE)
[hCaptcha]: https://hcaptcha.com/
[ref]: https://docs.hcaptcha.com/#integrationtest
[recaptcha-test-keys]: https://github.com/goto-bus-stop/recaptcha-test-keys