0.4.1 • Published 3 years ago

a-captcha v0.4.1

Weekly downloads
7
License
MIT
Repository
-
Last release
3 years ago

a-captcha

A Lightweight Pure JavaScript Captcha for Node.js. Inspired By trek-captcha.

Installation

$ npm install a-captcha --save

Examples

captcha

const fs = require("fs");
const { captcha } = require("a-captcha");

async function main() {
  const { text, buffer } = await captcha({ length: 5 });
  fs.writeFileSync("captcha.png", buffer);
  console.log(text);
}

main();
0.4.1

3 years ago

0.4.0

3 years ago

0.3.0

3 years ago

0.2.0

3 years ago

0.1.0

3 years ago