@strafechat/captcha
TypeScript icon, indicating that this package has built-in type declarations

1.0.41 • Public • Published

Captcha Provider

Requirements

This captcha middleware requires the express session middleware to be initialized before it is used. It can be installed using npm install express-session. For configuration, please refer to the express-session documentation.

Initialisation

const { CaptchaGenerator, middleware } = require("@strafechat/captcha");

const express = require("express");
const app = express();

// initialise express-session middleware here

// the generator can be used separately from the middleware
const generator = new CaptchaGenerator();
app.use(middleware(generator));

Usage

After the middleware has been added, you can access the generateCaptcha and verifyCaptcha functions on the request object.

app.get("/captcha", async (req, res) => {
  res.send({ image: await req.generateCaptcha() });
});
app.post("/captcha", async (req, res) => { // this would require the body-parser middleware
  res.send({ success: req.verifyCaptcha(req.body.captcha) });
});

Readme

Keywords

none

Package Sidebar

Install

npm i @strafechat/captcha

Weekly Downloads

2

Version

1.0.41

License

MIT

Unpacked Size

16.8 kB

Total Files

7

Last publish

Collaborators

  • shadowlp174
  • rtgamingwdt
  • brydenisnotsmart