-
-
Notifications
You must be signed in to change notification settings - Fork 0
#1 Home
Axorax edited this page Apr 14, 2023
·
1 revision
👋 Hey there! Welcome to the kith.js wiki
❓ What is kith.js?
kith.js is a powerful JavaScript library for password strength checking. It not only returns a score but also provides a dictionary full of additional information. You can set a reject score, and if the password's score falls below it, it will return 'rejected' as true. With kith.js, you can also generate random passwords effortlessly.
Install kith.js
npm i kith
Example code:
import kith from 'kith';
const pass = new kith();
console.log(pass.test('abc'));
Wiki pages in order
Links
npmjs - https://www.npmjs.com/package/kith
GitHub - https://github.com/Axorax/kith.js