Skip to content

ruffrey/strength

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Estimate password strength in javascript

On a scale of 0 = weak to 5.0 = strong.

$  npm install strength --save

NPM version

No dependencies.

Usage

var strength = require('strength');

var password = 'password';

var howStrong = strength(password);

console.log(howStrong); // 0

Password criteria

  • automatically fails 10,000 most common passwords
  • letters, case, numbers, special characters
  • length
  • repitition

Tests

npm test

License

MIT

Author

Jeff Parrish @ruffrey

About

Quick and dirty password strength evaluation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages