1.1.2 • Published 9 months ago

captcha-verification v1.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Captcha Verification

captcha-verification is a lightweight npm package that allows you to create random Captcha images to prevent robots from accessing your website. Captchas are widely used to verify that a user is human and not a malicious script or bot.

Installation

To install the Captcha Verification package, use npm:

npm install captcha-verification

Usage

const captcha = require('random-verification');

// Generate a random Captcha image

const config = {
  color: 'R',
  difficulty: 'medium'
}

const { captcha, hash } = captcha.generate();

// captcha contains the Captcha image in PNG format as a base4 string.
// hash contains the image content in encrypted format to verify the user input
// You can send the captchaImage to the user in the response or save it to a file.

// To verify the user's input against the generated Captcha:

const userInput = 'user-input-from-form';

const isValid = captcha.verify(hash, userInput);

if (isValid) {
  
  // Captcha input is valid, proceed with the user's request.

} else {
  
  // Captcha input is invalid, show an error message or take appropriate action.

}

Configs

KeyDefaultDescriptionPossible Keys
DifficultyeasyCaptcha noise ordereasy, medium
ColorBlackColor of the textr, g, b
Len6Number of characters in captcha1 - n

License

This package is open-source and available under the MIT License.

Contributing

Contributions are welcome! If you find any issues or have suggestions for improvements, feel free to open an issue or submit a pull request on the GitHub repository, here.

About

Random Captcha Generator is maintained and developed by Kaustubh.


By using Captcha Verification, you can easily implement Captcha functionality in your web application to enhance security and protect it from unwanted automated access. If you have any questions or need assistance, feel free to contact us or open an issue on the GitHub repository. Happy coding!

1.1.2

9 months ago

1.1.1

10 months ago

1.1.0

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago