0.0.5 • Published 3 years ago

random-password-generator-2022 v0.0.5

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

Hello, this function will allow you to generate a random password. EASY TO USE

Function accepts the following options

OptionTypeInfoOptional
passwordLengthnumberpassword lengthNo
withLowerCasebooleanCode with lowercase lettersYes
withNumbersbooleanCode with numbersYes
withUpperCasebooleanCode with uppercase lettersYes
withCharactersbooleanCode with symbolsYes
avoidAmbiguousbooleanAvoid ambiguous characters (l/I/1, 0/O)Yes

Support Common and module Example:

import { generateRandomPassword } from 'random-password-generator-2022';
//OR
const {generateRandomPassword} = require('random-password-generator-2022')

const password = generateRandomPassword({ passwordLength: 6, 
withNumbers: true, withCharacters: true, });

//7_(>=3
console.log(password)
0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago