1.0.3 • Published 2 years ago

express-recaptcha3 v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

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
});