password-generation
Password generation and complexity checking without headache
Usage
$ yarn add password-generation --save
Generate password
; ; // Generate password with default options ({specials: 1, nums: 2, uppers: 2, lowers: 3}); // Generate password with length 10 characters; // Generate password with length 8 to 12 characters; // Generate password with 3 special characters and 10 characters long; // Full example
Example:
const generate = default; const a = ; console; const b = ; console; const c = ; console; const d = ; console; const e = ; console; const f = ; console; const g = ; console; const h = ; console;
$ node test/test.js