Skip to main content
Deno 2 is finally here 🎉️
Learn more

Captcha

Create captcha by using canvas module.

import { createCaptcha } from "https://deno.land/x/captcha/mods.ts";

const captcha = createCaptcha();

console.log(captcha.text);

await Deno.writeFile('captcha.png', captcha.image);