Skip to content

lechuckroh/password-strength-calc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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