1.1.0 • Published 10 months ago

generate-password-by-osb v1.1.0

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

Generate random password

Generate 9 or 10 characters password using small, capital letters, numbers and a symbol.

Installation

npm i generate-password-by-osb

Example - without a symbol

const password = generateStrongPassword();
console.log("Password generated: " + password);

Example - with a symbol (10 characters)

const symbolPassword = generatePasswordWithSymbol();
 console.log(symbolPassword);

Hope you find the password-generator useful.