Welcome to simpliest-password-generator 👋
function for password generation
Install
npm install simpliest-password-generator
Usage
const genereatePassword = require('simpliest-password-generator');
// 1: simple usage
console.log(genereatePassword()) // E?r8H,,4>Tqy
// 2: with length and specials controls
const eightWithUppercase = genereatePassword(8, {
uppercase: true,
numbers: false,
specials: false
})
console.log(eightWithUppercase) // PGgLajec
Author
👤 d.igoschin.igoshin@gmail.com
- Github: @denis143241
Show your support
Give a ⭐️ if this project helped you!