express-recaptcha3

1.0.3 • Public • Published

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

/express-recaptcha3/

    Package Sidebar

    Install

    npm i express-recaptcha3

    Weekly Downloads

    2

    Version

    1.0.3

    License

    ISC

    Unpacked Size

    2.46 kB

    Total Files

    4

    Last publish

    Collaborators

    • jahidanowar