simple-otp-generator
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

Simple OTP and Password Generator

project-image

Generate one-time passwords (OTPs) and Random Password with ease.

:accessibility: Installation

npm install simple-otp-generator

👾 Usage

  • How to use OTP Generator
import { generateOTP } from 'simple-otp-generator';

// Default length is 4
const otp1 = generateOTP();
console.log('Generated OTP (default length):', otp1);

// Specify length as an option
const otp2 = generateOTP({ length: 6 });
console.log('Generated OTP (length 6):', otp2);

// Provide length directly (backward compatible)
const otp3 = generateOTP(8);
console.log('Generated OTP (length 8):', otp3);
  • How to use Password Generator
import { generatePassword } from 'simple-otp-generator';

// Default length is 4
const password1 = generatePassword();
console.log('Generated Password (default length):', password1);

// Specify length as an option
const password2 = generatePassword({ length: 6 });
console.log('Generated Password (length 6):', password2);

// Provide length directly (backward compatible)
const password3 = generatePassword(8);
console.log('Generated Password (length 8):', password3);

🏛️Options

length (optional)
Type: number
Default: 4
Description: The length of the generated OTP or Password.

Package Sidebar

Install

npm i simple-otp-generator

Weekly Downloads

4

Version

0.1.0

License

MIT

Unpacked Size

7.96 kB

Total Files

6

Last publish

Collaborators

  • aakashmukherjee