1.0.0 • Published 9 months ago

generate-one-time-password v1.0.0

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

Generate One Time Password(OTP)

A lightweight npm package for generating one-time passwords (OTP) with adjustable lengths between 4 and 12 digits, ideal for authentication and verification.

Installation

$ npm install generate-one-time-password --save

or

$ yarn add generate-one-time-password

Usage

import { generateOTP } from "generate-one-time-password";

const otp = generateOTP();
console.log(otp); // 490605

const otpcode = generateOTP(4);
console.log(otpcode); // 3075

const otpcode = generateOTP(8);
console.log(otpcode); // 24837554

API Reference

Generate a random OTP number with a length between 4 and 12 digits.

Function ArgumentsDefault ValueTypeDescription
4 - 126OptionalThe number of digits in a one-time password (OTP). If no option is specified, the OTP will be 6 digits long.

License

MIT License

Authors