New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@strafechat/captcha

Package Overview
Dependencies
Maintainers
3
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@strafechat/captcha

A very basic captcha provider for Strafe

  • 1.0.41
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-60%
Maintainers
3
Weekly downloads
 
Created
Source

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

FAQs

Package last updated on 30 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc