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

password-generator

v2.3.2

Published

Memorable password generator. For the command line, Node.js and the browser.

Downloads

138,924

Readme

password-generator

Memorable password generator. For the command line, Node.js and browsers.

Build Status Dependency Status

Installation

$ npm install password-generator -g

Usage

From the CLI

password-generator -h

Displays this help

Generates a memorable password

Options:
  -l  Password length
  -c  Generates a non memorable password  [default: false]
  -p  Pattern to match for the generated password
  -h  Displays this help

Simple memorable pass

password-generator
=> maqetaxaku

Custom length

password-generator -l 30
=> nugiferagiraqadamedewubaqirali

Non memorable

password-generator -c
=> QPnb3gl7_0

Customize the pattern to match for each password character

password-generator -p "[\d\W\w\p]"
=> Je;VgG?{Yd

Any number or letter

password-generator -p "[\w]"
=> 3NHPqzjIAq

Combine multiple strategies 6 memorable and 3 numbers

echo "`password-generator -l 6``password-generator -p "[0-9]" -l 3`"
=> wazawe351

From Node.js

var generatePassword = require('password-generator');

From the browser

<script src="https://raw.github.com/bermi/password-generator/master/dist/password-generator.min.js" type="text/javascript"></script>

Browser support

Since v2.0.0 this library relies on cryptographic random values generated via crypto.getRandomValues. IE11 was the first IE version to include this method. Check caniuse.com for details.

Usage

Default settings (memorable 10 letters)

generatePassword() // -> xexeyimahi

Custom length not memorable

generatePassword(12, false) // -> 76PAGEaq6i5c

Characters should match a pattern

generatePassword(12, false, /\d/) // -> 252667390298

Customize the password prefix

generatePassword(12, false, /\d/, 'foo-') // -> foo-67390298

Example with custom validation rules

Given the pattern regexp can only match a single character you can build a function that generates multiple passwords until you hit one that complies with your rules.

The following example will generate a password with the following requirements

  • Must contain at least two numbers
  • Must contain at least three uppercase letters
  • Must contain at least three lowercase letters
  • Must contain at least two special characters
  • Must NOT contain sequences of two or more repeated characters
var generatePassword = require("password-generator");

var maxLength = 18;
var minLength = 12;
var uppercaseMinCount = 3;
var lowercaseMinCount = 3;
var numberMinCount = 2;
var specialMinCount = 2;
var UPPERCASE_RE = /([A-Z])/g;
var LOWERCASE_RE = /([a-z])/g;
var NUMBER_RE = /([\d])/g;
var SPECIAL_CHAR_RE = /([\?\-])/g;
var NON_REPEATING_CHAR_RE = /([\w\d\?\-])\1{2,}/g;

function isStrongEnough(password) {
  var uc = password.match(UPPERCASE_RE);
  var lc = password.match(LOWERCASE_RE);
  var n = password.match(NUMBER_RE);
  var sc = password.match(SPECIAL_CHAR_RE);
  var nr = password.match(NON_REPEATING_CHAR_RE);
  return password.length >= minLength &&
    !nr &&
    uc && uc.length >= uppercaseMinCount &&
    lc && lc.length >= lowercaseMinCount &&
    n && n.length >= numberMinCount &&
    sc && sc.length >= specialMinCount;
}

function customPassword() {
  var password = "";
  var randomLength = Math.floor(Math.random() * (maxLength - minLength)) + minLength;
  while (!isStrongEnough(password)) {
    password = generatePassword(randomLength, false, /[\w\d\?\-]/);
  }
  return password;
}

console.log(customPassword()); // => 2hP5v?1KKNx7_a-W

Running tests

npm install
make test

Building

npm install
make all

License

(The MIT License)

Copyright (c) 2011-2020 Bermi Ferrer <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.