generate-one-time-password
TypeScript icon, indicating that this package has built-in type declarations

0.2.0 • Public • Published

Generate One Time Password(OTP)

A lightweight npm package for generating either 4 or 6 digits one-time passwords (OTP) for authentication and verification purposes.

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(6);
console.log(otp); // 490605

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

API Reference

Generate a random OTP number with either 4 or 6 digits.

Function Arguments Default Value Type Description
4 or 6 6 Optional The 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

Package Sidebar

Install

npm i generate-one-time-password

Weekly Downloads

3

Version

0.2.0

License

MIT

Unpacked Size

4.16 kB

Total Files

6

Last publish

Collaborators

  • kavingovind