https://github.com/akopcz2/recursive-password-generator
0 dependency, recursive password generator based on word game word list
https://github.com/akopcz2/recursive-password-generator
es6 password-generator recursive wordlist
Last synced: 9 months ago
JSON representation
0 dependency, recursive password generator based on word game word list
- Host: GitHub
- URL: https://github.com/akopcz2/recursive-password-generator
- Owner: akopcz2
- Created: 2018-07-27T02:22:21.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-01T01:59:03.000Z (over 7 years ago)
- Last Synced: 2025-06-01T11:44:52.927Z (10 months ago)
- Topics: es6, password-generator, recursive, wordlist
- Language: JavaScript
- Homepage:
- Size: 633 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
## 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)
```javascript
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