password-generator-lib
v1.0.2
Published
A library for generating random and secure passwords.
Downloads
5
Readme
Password Generator Library
A library for generating random and secure passwords.
Installation
npm install password-generator-lib
Usage
const { generatePassword } = require('password-generator-lib');
const password = generatePassword(12, { letters: true, numbers: true, specialChars: true });
console.log(password);// Outputs a 12-character password with letters, numbers, and special characters.