You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

react-otpcode-input

Package Overview
Dependencies
Maintainers
2
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-otpcode-input

OTP Input Component

1.0.2
Source
npmnpm
Version published
Weekly downloads
64
-82.07%
Maintainers
2
Weekly downloads
 
Created
Source

react-otpcode-input

An OTP input component using React

Install

npm install react-otpcode-input --save

Usage

ES6

import OtpInput from 'react-otpcode-input';

Typescript

import OtpInput from 'react-otpcode-input';

Props

PropsOptionsDefaultDescription
numberOfInputsNumbernoneNumber of OTP inputs to be rendered.
onChange(code) => voidnoneReturns OTP code typed in inputs.
onComplete(code) => voidnoneCallback when OTP is completely filled.
otpStringnoneThe value of the OTP passed into the component.
disabledbooleannoneDisables all the inputs.
autoFocusbooleannoneAuto focuses input on initial page load.

Examples

import OtpInput from 'react-otpcode-input';

<OtpInput
  numberOfInputs={6}
  onChange={(code) => console.log(code)}
  onComplete={(code) => console.log(code)}
  otp={""}
  autoFocus={true}
/>

License

MIT

Keywords

otp

FAQs

Package last updated on 12 Mar 2020

Did you know?

Socket

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