password-strength-checker-api
v1.0.0
Published
A Node.js API to check password strength using bcryptjs
Readme
Password Strength Checker API
This is a simple Node.js API that checks the strength of a password and hashes it using bcryptjs.
Installation
const { checkPasswordStrength } = require("password-strength-checker-api");
const {password}=req.body;
const result = await checkPasswordStrength(password);
exp
{
"password":"199@12rfrdgt454"
}