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 🙏

© 2025 – Pkg Stats / Ryan Hefner

tech-human-id

v5.0.7

Published

Returns from a pool of 15m human-readable IDs

Readme

Human-Readable Tech Identifiers

Downloads License

NOTE: This is a fork from https://github.com/RienNeVaPlus/human-id
This includes tech terms only. Check the examples below.

Using words to identify datasets (instead of numbers) provides various advantages when humans are involved, ie increased distinction and rememberability.

Human-ID generates readable strings by chaining common short words of the english language in a semi-meaningful way. The result is concatenated of adjective + noun + verb resulting in a minimum pool size of 28 690 200 possible combinations.

  • SFW: no bad words; family friendly results
  • No dependencies

Examples

import { humanId } from "tech-human-id";
humanId();
  • ShortRecordsReport
  • VastTasksEnter
  • HugePixelsUse
  • FastGraphsAccept
  • ShinyPluginsTrack
  • ThinCryptosCreate
  • ModernHeadersCopy
  • WideDevicesLog
  • SmartPacketsUpgrade

humanId("-"); // or { "separator": "-" }
  • Bright-Backends-Import
  • Full-Functions-Start
  • Huge-Extensions-Upload
  • Solid-Instances-Select
  • Smart-Patterns-Monitor
  • Swift-Tools-Allow
  • Clear-Systems-Program
  • Clear-Graphs-Change
  • Smooth-Keys-Store
  • Thin-Programs-Open

humanId(false); // or { "capitalize": false }
  • fastheaderstrack
  • colddatabasesmake
  • fastindexeschange
  • quickstandardsprogram
  • freedomainslog
  • afraidclassesprogram
  • hotdatasetssearch
  • opencryptosconnect
  • neatcomponentsbuild

Install

Yarn

yarn add tech-human-id

NPM

npm install tech-human-id

Usage

Programmatic

// ES6+
import { humanId, poolSize, minLength, maxLength } from "tech-human-id";

// CommonJS
// const { humanId, poolSize, minLength, maxLength } = require("tech-human-id");

// LightStructuresCreate
console.log(humanId());

// Tough~Frameworks~Export
// alias for { separator: '~' }
console.log(humanId("~"));

// shiny-machines-integrate
console.log(
  humanId({
    separator: "-",
    capitalize: false,
  }),
);

console.log(poolSize()); // 4,34,700
console.log(minLength()); // 10
console.log(maxLength()); // 28

Extended Pool Size

For most cases, the default pool size should be large enough. However, the options adjectiveCount and addAdverb can be utilized to increase the pool size for the price of the string length.

const options = {
  adjectiveCount: 2,
  addAdverb: true,
  separator: ".",
};

console.log(humanId(options)); // Fast.Fast.Queues.Compile.Optimally
console.log(poolSize(options)); // 28,690,200
console.log(minLength(options)); // 24
console.log(maxLength(options)); // 54

API

humanId(options?: string | Option): string

Generates a human ID. Options can be a string (separator), a boolean (capitalize) or an Options object of:

  • separator string = '' - Separates the words from each other
  • capitalize boolean = true - Whether to transform the first character of each word to upper case
  • adjectiveCount number = 1 - How many adjectives to return
  • addAdverb boolean = false - Adds a fourth part to the id

This function is also available as the default export

poolSize(options?: string | Option): number

Returns the number of possible combinations for a given set of options.

minLength(options?: Option): number

The length of the shortest possible id for a given set of options.

maxLength(options?: Option): number

The length of the longest possible id for a given set of options.

adjectives: string[]

List of possible values for the first part of the human id.

nouns: string[]

List of possible values for the second part of the human id.

verbs: string[]

List of possible values for the third part of the human id.

adverbs: string[]

List of possible values for the optional fourth part of the human id.