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

@frostbytedata/muuid

v1.2.0

Published

Memorable UUID generator written in JS with up to 10.5 Billion possible combinations.

Downloads

51

Readme

Memorable UUID generator written in JS with up to 10.5 Billion possible combinations.

🏠 Homepage

Installation

npm install muuid --save

Usage

Code:

const muuid = require('muuid')

const muuids = muuid({
  quantity: 10, // Optional
  format: ['adjective', 'color', 'verb', 'noun', 'number'], // Optional
  duplicateReport: true, // Optional
  separator: ['-'] // Optional
})

console.info(muuids)

Outputs:

[
  'beautiful-midnight-blue-tiptoeing-fisher-65',
  'courageous-black-kissing-wren-29',
  'energetic-lavender-believing-moose-27',
  'lovely-steel-blue-fiending-axolotl-71',
  'determined-black-leading-angelfish-37',
  'glamorous-aquamarine-trotting-grasshopper-38',
  'blushing-magenta-boolin-camel-34',
  'bright-deep-pink-weaving-steer-23',
  'pleasant-rose-helping-macaque-42',
  'bewildered-goldenrod-crawling-coyote-93'
]

Using example.js

Simply examine and run the example.js file in your terminal to see how to use the library:

node example.js

Config Options

format An array of strings that determines how the muuid will be structured. The order of types is used when the id is generated. It can take the following format types:

['adjective', 'color', 'verb', 'noun', 'number']

quantity How many ids you want to batch generate at a single time.

duplicateReport Will output in console a simple report of duplicates.

separator An array of strings that will be used to separate the different parts of the muuid. If you supply more than one string in the array, the separator will be a random value for each part of the generated muuid. Defaults to ['-'] which will produce a result like the demo above.



Universal Uniqueness

Ok, you got me, technically this library does not produce Universally Unique memorable IDs as the name implies... When generating and using this tool to create IDs in your application, you should check their uniqueness against values you have already generated and stored. Also, due to the nature of this being a "memorable ID", I would avoid relying on this library to provide universal uniqueness across multiple different independent systems. I may attempt to modify the config options in the future to allow users to generate a more universally unique number or string to the output more akin to something you would see in a UUID.

In my testing, out of 5 million generated muuids, around 0.075% of them will not be unique, and that percentage slowly rises as you generate more. This is why it is critical to implement a duplicate check in your system before using any given outputted muuid.


Run tests

npm run test

Author

👤 Parker Lawson

🤝 Contributing

Contributions, issues and feature requests are welcome!Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2021 Parker Lawson. This project is MIT licensed.


This README was generated with ❤️ by readme-md-generator