Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 681 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 681 Bytes

strong-pass

Simple javascript password checker. It calculates password strength based on Password Meter algorithm.

Installation

$ npm install strong-pass --save

Usage

Basic example

let strength = StrongPass("Ifdsk6tew") //answer = 4

Return values

Result value is number from 1 to 5

value strength
1 Very weak
2 Weak
3 Good
4 Strong
5 Very Strong

Configuration

Minimum length for password(in progress)

let strength = StrongPass("Ifdsk6tew", { minLength: 6 }) //answer = 4