1.0.3 • Published 5 months ago

password-master v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
5 months ago

Installation

$ npm install password-master -g

Usage

create([options])

Create a password with options. The password string is returned.

let PasswordMaster = require('password-master');

let password = PasswordMaster.create({
   length: 20, //default: 10
   uppercase: true, //default: false
   numbers: true, //default: false
   symbols: true //default: false
});
//Creating without options will return a password with a length of 10 and only small characters.

// 'A/Xk_s3MR[Yr^#>V!BIe'
console.log(password);
1.0.3

5 months ago

1.0.2

5 months ago

1.0.1

5 months ago

1.0.0

5 months ago