Simple project that generates captchas in the browser. Try it out!
Install dependencies using npm install
.
Run the application locally using npm start
.
- "/": Display basic website which can download captcha
- "/generateCaptchas": returns a list of captchas in the following format (optional parameter: amount = 1)
[
{
"text": "text of the captcha",
"base64": "data:image/png;base64,iVBORw0KGgo..."
},
// ...
]