repassgen
v1.1.0
Published
'REadable PASSwords GENerator'
Downloads
120
Readme
repassgen
The aim is to generate passwords which are easy readable and feels like english words but meaningless in content.
Install
npm install -g repassgen
Synopsis
$ repassgen [ --options | -o ] code
$ repassgen [ --help | -h ]-o key could be omitted
Options
--help, -hRunning with this key or without any keys at all will display usage guide.
--options, -oOptions key could be ommited if the options code is provided. Options code must follow the template: (1*)(2*)(3*), where:
1* - integer value (min 1) of passwords amount to generate;
2* - code letter from [aAnNsSfF] which corresponds:
a - 'abcd', A - 'aBcD', n - 'a2c4', N - 'a2C4', s - 'a@c$', S - 'a@C$', f - 'a2c$', F - 'a2C$'
3* - integer value (min 6) of passwords length to generate.
Examples
$ repassgen -o 1a6Will generate 1 password consisting of lowercase letters and length of 6.
$ repassgen 10N8Will generate 10 passwords consisting of both lowercase and uppercase letters and numbers and length of 8.
$ repassgenWill display usage guide.
