1
0
Fork 0
mirror of https://github.com/MillironX/docker-names.git synced 2024-09-28 15:12:03 +00:00
docker-names/README.md
2021-07-20 11:31:10 -05:00

1.5 KiB

Docker Names

An implementation of docker-names in TypeScript. Forked from https://github.com/criblio/docker-names.

Changes

  1. Added more names of scientists related to
    • chemical engineering
    • animal breeding
    • rumen science
    • among others...
  2. Changed the delimiter back to an underscore
  3. Added an identifier that starts with a date (useful where identifiers have to be sorted chronologically).

Usage

Maybe this stuff will still work? 🤷 I just replaced everything with my name and code, but I personally transpile to JavaScript rather than use TypeScript directly.

Generate Name

import {generateName} from '@millironx/docker-names'

const dockerName = generateName();

console.log(dockerName);

//Outputs goofy_panini

Generate Name With Number

import {generateNameWithNumber} from '@millironx/docker-names'

const dockerName = generateNameWithNumber();

console.log(dockerName);

//Outputs goofy_panini_4

Generate Name With Date

import {generateNameWithDate} from '@millironx/docker-names'

const dockerName = generateNameWithDate();

console.log(dockerName);

//Outputs 20210720_goofy_panini

Words

The words can also be imported from the package if need be.

import {left,right} from '@millironx/docker-names'

console.log(left);

//Outputs [admiring,adoring, etc...]

console.log(right)

//Outputs [albattani,allen, etc...]