1.0.1-rc.1 • Published 7 years ago

utilio-password v1.0.1-rc.1

Weekly downloads
3
License
ISC
Repository
gitlab
Last release
7 years ago

Utilio Password Utils

Set of utilities to easily analyse and generate passwords.

Getting Started

Installing

npm install utilio-password

Modules

Generation

Allows to generate random passwords following the specified rules. The rules available are stored in generationRules object.

Usage example:

const {generate, generationRules} = require('utilio-password');
generate(10, [generationRules.LOWERCASE, generationRules.UPPERCASE])

Strength

Analyses the strength of a provided password. It uses entropy algorithm to calculate the password strength.

Usage example:

const {strength} = require('utilio-password');
strength("ab&FdAf#1@")

Authors

  • José Miguel Melo
1.0.1-rc.1

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago