1.0.4 • Published 5 months ago

react-captcha-simple v1.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
5 months ago

React Easy Captcha Generator

Easily generates Captcha from any text.

Features

  • Generate Captcha with 3 levels: easy, normal, hard.
  • Make a package with a rollup module bundler.
  • Works on react.js and next.js.

Installation

npm i react-captcha-simple    # npm
yarn add react-captcha-simple # yarn

Preview

easy :

Web

normal :

Web

hard:

Web

Usage

import Captcha from "react-captcha-simple";

export default function App() {
  return (
    <div className="App">
      <Captcha randomNumber={'123458'} type={'easy'} width={200} height={60} />
    </div>
  );
}