express-recaptcha3
v1.0.3
Published
An Express middleware for recapctha server implementation
Downloads
3
Maintainers
Readme
An Express middleware for recapctha server implementation
ES6 Module
import ExpressRecaptcha3 from "express-recapctha3";
const recapctha = new ExpressRecaptcha3({
secret: process.env.RECAPTCHA_SITE_SECRET_KEY,
score: 0.7,
});
app.post("/contact", recaptcha.verify, (req, res) => {
// Implementation goes here
});
Common JS
const ExpressRecaptcha3 = reqire("express-recapctha3");
const recapctha = new ExpressRecaptcha3({
secret: process.env.RECAPTCHA_SITE_SECRET_KEY,
score: 0.7,
});
app.post("/contact", recaptcha.verify, (req, res) => {
// Implementation goes here
});