1.0.3 • Published 7 years ago
recaptcha-v3-loader v1.0.3
recaptcha-v3-loader
reCAPTCHA v3 loader for web apps (ES2015 module)
Installation
npm install recaptcha-v3-loader
Usage
import {loadRecaptch} from 'recaptcha-v3-loader';
const key = '...';
const action = 'homepage';
loadRecaptch(key)
.then(recaptcha => recaptcha.execute(key, {action}))
.then(token => console.log(token));
Todo
- prevent loading script twice.
Enjoy.