kith

1.1.0 • Public • Published

kith.js

Your key to stronger passwords

For File name Size
ES6 kith.js 0.974 Kb
commonjs kith.cjs 0.961 Kb

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.

Example code:

ES6

import kith from 'kith';
const pass = new kith();

console.log(pass.test('abc'));

commonjs

const kith = require('kith');
const pass = new kith();

console.log(pass.test('abc'));

kith.js documentation - https://github.com/Axorax/kith.js/wiki


Support me on Patreon - Check out my socials

/kith/

    Package Sidebar

    Install

    npm i kith

    Weekly Downloads

    0

    Version

    1.1.0

    License

    MIT

    Unpacked Size

    3.79 kB

    Total Files

    4

    Last publish

    Collaborators

    • axoraxdev