Socket
Socket
Sign inDemoInstall

captcha-component-react

Package Overview
Dependencies
90
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    captcha-component-react

A simple captcha component library for react.


Version published
Weekly downloads
12
increased by500%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

libkaptcha

Boilerplate code for the Captcha react component library.

Reference: How to build a React component library

Usage:

import { KaptchaCard } from "@aashutosh-lis/libkaptcha";

// to use library css
import "@aashutosh-lis/libkaptcha/dist/style.css"  


function App() {

  //used for backend validation after frontend-library verification of captcha
  const [uuid, setUuid] = useState<string>(''); 
  

  const updateUuid = (value:string)=>{
    setUuid(value);
  }

  return (
    <div className="App">
      <KaptchaCard url="http://localhost:3000" setCaptchaUuid={updateUuid}/>
    </div>
  );
}

export default App;

Building

The library can be built using npm run build. Once built, the built artifacts are present in the dist directory.

To use the library locally , we publish it to the local yalc store using npx yalc publish in the library's root directory.

Then run npx yalc add <library_name> in the project where you want to use the library.

FAQs

Last updated on 01 Dec 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc