npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

secure-password-utility

v1.5.7

Published

This NodeJS-password utility encourages the use of strong passwords in front-end applications. You can also generate product keys using this plugin.

Downloads

51

Readme

secure-password-utility

This NodeJS-password utility encourages the use of strong passwords in front-end applications.

To install this package, run npm i secure-password-utility.

When you call weakPasswordChecker you will get a boolean value.

Weak passwords like Passkey!@#41 or common words will also return false.

The weakPasswordChecker function will validate your input by ensuring that the password length is more than 11. It also confirms that the input contains a number and the combination of a special character,lowercase and uppercase.

Once you display the conditions in your UI, this function will enforce the validation.

Quick Setup

Install the plugin using npm i secure-password-utility In your Node/Angular/React/Vue application: Install 'Types' plugin by running npm i -D @types/node Include "types": [ "node" ],in your tsconfig.json file and restart your IDE.

Usage

*Validate password strength Syntax: securePasswordUtility.weakPasswordChecker('yourSamplePassword', lengthOfYourPassword); N.B. Ensure the length of the password you want to validate is at least 12-characters long.

*Generate a strong password Syntax: securePasswordUtility.createStrongPassword(lengthOfYourPassword); N.B. The password length must be more than 12.

*Generate a product key Syntax: securePasswordUtility.productKeyGenerator(lengthOfYourProductKey); N.B. The password length must be a multiple of 4 or 5 between 16 and 100 e.g. 16 or 25

const securePasswordUtility = require('secure-password-utility'); // Add this in your top-level class or file
function SampleCall () async {
    let passwordStrength = false;
    await securePasswordUtility.weakPasswordChecker('k%&%N8Ey4$Yx$Fp$A8', 18)
        .then((response) => {
            passwordStrength = response
    })
    if(passwordStrength) {
        console.log("secure password");
    } else {
        console.log("weak password");
    }
}

function SamplePasswordCreator () async {     
    let generatedPassword;
       await securePasswordUtility.createStrongPassword(16).then((response) => {
            generatedPassword = response;
       })
    console.log("Your autogenerated password is ", generatedPassword);
}

function SampleProductKeyGenerator () {
     const generatedPassword = securePasswordUtility.productKeyGenerator(24);
     console.log("Your product key is ", generatedPassword);
}

function BatchProductKeyGenerator () {
     const generatedPassword = securePasswordUtility.batchProductKeyGenerator(25, 100);
     console.log("Your product key is ", generatedPassword);
}

Buy me a ☕ https://paypal.me/inspirati