check password strength:一个简单的npm软件包用于检查特定密码短语的密码强度。 基于Javascript RegEx的密码强度检查器 源
总览 一种检查某个密码短语的密码强度的简单方法。 基于密码强度检查器。 安装 npm i check-password-strength --save 设置和基本用法 const passwordStrength = require('check-password-strength') console.log(passwordStrength('asdfasdf').value) // Weak (It will return weak if the value doesn't match the RegEx conditions) console.log(passwordStrength(
用户评论