react-captcha-simple
v1.0.4
Published
Easy to use and beautiful Captcha Image Generator for React.js projects.
Downloads
2
Readme
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 :
normal :
hard:
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>
);
}