UNPKG

hsncaptcha

Version:

An NPM package to generate captcha images that can be used in Discord bots or various other projects

8 lines (6 loc) 294 B
const path = require("path"), fs = require("fs"), Captcha = require("../"); let captcha = new Captcha(); captcha.PNGStream.pipe(fs.createWriteStream(path.join(__dirname, `${captcha.value}.png`))); captcha.JPEGStream.pipe(fs.createWriteStream(path.join(__dirname, `${captcha.value}.jpeg`)));