password-strength-calc

Password strength calculator based on passwordmeter.com

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
password-strength-calc
701.0.32 years ago6 years agoMinified + gzip package size for password-strength-calc in KB

Readme

password-strength-calc
Build Status Coverage Status
Password strength calculator written in JavaScript.
Scoring rule is based on The Password Meter.
Password strength value is from 0 to 100.

Node.js

const getPasswordStrength = require('password-strength-calc');

console.log(`'Password' strength is ${getPasswordStrength('Password')}`);

// 'Password' strength is 26

Browser

<script src="pwd-str-calc.min.js"></script>
<script>
    document.write("'Password' strength is " + getPasswordStrength('Password'));
</script>

Download