silly-password-generator
TypeScript icon, indicating that this package has built-in type declarations

1.0.28Β β€’Β PublicΒ β€’Β Published

πŸ”‘ Silly Password Generator

Generate silly passwords that are secure and easy to use. Inspired by xkcd.

npm VersionΒ  View project on GitHubΒ  Deploy Status

Buy me a coffeeΒ Sponsor

Documentation

Read the official documentation.

β†’ Generate Silly Passwords ←

Overview

Generate fun and silly passwords that are secure, easy to type, and easy to remember. Inspired by xkcd.

Would you rather use the password Tr0ub4dor&3 or exciting creepy macho tiger?

Using an unrestricted brute-force attack, the first would take 3 seconds to crack, and the second would take 1 month. Exciting creepy macho tigers for the win!

Features include:

  • πŸ’© Fun passwords are better than boring ones
    • Why use lame and hard to remember passwords, when you can use fun ones... that are also secure?
  • πŸ‘¨β€πŸ”¬ Password analysis
    • Leverage the brainpower of at least a dozen nerds. This library makes sure your password is secure using zxcvbn.
  • πŸ” Secure
    • Have I mentioned that they're secure? Well, they are!
  • πŸ”’ Customizable
    • Choose from a set of options to customize your password.

Donate

If this project helped you, please consider buying me a coffee or sponsoring me. Your support is much appreciated!

Buy me a coffeeΒ Sponsor

Table of Contents

Installation

npm i silly-password-generator

Quick Start

Via Website

Go here: Silly Password Generator

Via npm

import { generateSillyPassword } from 'silly-password-generator';
// Use with no options to generate a 4-word silly password
generateSillyPassword(); // `thorough loud annoying penguin`

// Provide a custom word count if you'd like
generateSillyPassword({ wordCount: 7 }); // `glamorous large powerful fast black noisy clam`

// Capitalize the first letter of the resulting password
generateSillyPassword({ capitalize: true }); // `Curious fluffy excited copperhead`

// You can provide salt to strengthen your passwords, too. Salt is appended to the end.
generateSillyPassword({ salt: "!?!?" }); // `damned important envious pangolin!?!?`

Combine options as you see fit. The wordCount must be at least 1.

Analyzing Password Strength

This library uses zxcvbn to analyze password strength. This was written by a bunch of nerds, so you know it's legit.

import { analyzePassword } from 'silly-password-generator';
// Returns an object telling you how awesome or crappy your password is.
const results = analyzePassword(sillyPassword); 

See the zxcvbn Usage section for the properties available.

TypeScript

Type definitions have been included for TypeScript support.

Icon Attribution

Favicon by Twemoji.

Contributing

Open source software is awesome and so are you. 😎

Feel free to submit a pull request for bugs or additions, and make sure to update tests as appropriate. If you find a mistake in the docs, send a PR! Even the smallest changes help.

For major changes, open an issue first to discuss what you'd like to change.

⭐ Found It Helpful? Star It!

If you found this project helpful, let the community know by giving it a star: πŸ‘‰β­

License

See LICENSE.md.

Package Sidebar

Install

npm i silly-password-generator

Weekly Downloads

143

Version

1.0.28

License

MIT

Unpacked Size

48.6 kB

Total Files

17

Last publish

Collaborators

  • justinmahar