1.0.8 • Published 6 years ago

wordlist-password-generator v1.0.8

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Wordlist Password Generator

Uses words found within the worldlists on the site https://www.wordgamedictionary.com/word-lists/

No External Dependecies

Uses Async Compatible with Node versions >=7.6 (containing default ASYNC)

let randomPass = require('wordlist-password-generator');
/** 
 * (4) Number of letters you want to word to have | Max = 12
 * (2) Levels of depth | 2 words and 2 numbers 
 * */
let userPassword = new randomPass(4,2);
userPassword.init().then((value) => {
    const userPassword = value;
    console.log(userPassword);
});
/* This would return something like lahs.guru-10 */

To Do

  1. Allow for upload of custom wordlist
1.0.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago