check-password-strength
Advanced tools
Comparing version 1.0.14 to 1.0.15
{ | ||
"name": "check-password-strength", | ||
"version": "1.0.14", | ||
"version": "1.0.15", | ||
"description": "A NPM Password strength checker based from Javascript RegExp. Check passphrase if it's \"Weak\", \"Medium\" or \"Strong\"", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -73,7 +73,8 @@ | ||
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. | ||
##### 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. | ||
You can easily install via Nuget Package Manager or .NET CLI ([Check.Password.Strength](https://github.com/deanilvincent/Check.Password.Strength)). This package uses Regular Expression `new Regex()` derives from `System.Text.RegularExpressions`. You can use this especially if you want to validate the passcode strength on backend services or web apis of your project. | ||
#### Other NPM RegEx validator | ||
##### 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). | ||
@@ -80,0 +81,0 @@ |
12527
93