check-password-strength
Advanced tools
Comparing version 1.0.12 to 1.0.13
{ | ||
"name": "check-password-strength", | ||
"version": "1.0.12", | ||
"version": "1.0.13", | ||
"description": "A NPM Password strength checker based from Javascript RegExp. Check passphrase if it's \"Weak\", \"Medium\" or \"Strong\"", | ||
@@ -29,3 +29,4 @@ "main": "index.js", | ||
"password-checker-strength", | ||
"strength-password-checker" | ||
"strength-password-checker", | ||
"pass-strength" | ||
], | ||
@@ -32,0 +33,0 @@ "author": "deanilvincent", |
@@ -73,2 +73,3 @@ | ||
Other resources#### For .NET Project | ||
If you're working with .net core project, I've created a simple nuget package with same RegEx strings to validate a password strength. | ||
@@ -78,2 +79,5 @@ | ||
#### Other NPM RegEx validator | ||
I also made another NPM package ([hey-regex](https://www.npmjs.com/package/hey-regex)) that checks common inputs like numbers (whole number and decimal), alpha numeric, email and url. This package only returns `true` or `false` based from the selected function (with RegEx `.test()` inside). | ||
Reference [blog](https://www.thepolyglotdeveloper.com/2015/05/use-regex-to-test-password-strength-in-javascript/). | ||
@@ -80,0 +84,0 @@ |
12541
93