wrangler-action/node_modules/human-id
2023-08-07 15:11:15 -05:00
..
.npmignore Temp fix for deps issue 2023-08-07 15:11:15 -05:00
index.js Temp fix for deps issue 2023-08-07 15:11:15 -05:00
LICENSE Temp fix for deps issue 2023-08-07 15:11:15 -05:00
package.json Temp fix for deps issue 2023-08-07 15:11:15 -05:00
README.md Temp fix for deps issue 2023-08-07 15:11:15 -05:00

Generates human readable ID strings by chaning common short words of the english language.

Using words (instead of numbers) to identify datasets provides various advantages when humans are involved. human-id generates word ids from a pool of 10 006 400 unique IDs.

No dependencies.

Examples

  • FortyGhostsTalk
  • CalmPanthersDream
  • TastyRocksSparkle
  • HealthyCowsSmile
  • AfraidWallsExist
  • StrangeCarsRush
  • TwoKangaroosSing
  • HappyDolphinsJump

Install

$ npm install --save human-id

Usage

const humanId = require('human-id');

// RareGeckosJam
humanId();

// rare-geckos-jam
humanId({
  separator: '-',
  capitalize: false
});