1
0
Fork 0
mirror of https://github.com/MillironX/docker-names.git synced 2024-09-28 15:12:03 +00:00
A docker name generator in TypeScript.
Find a file
Bryce Easley c0b46b1225
Merge pull request #2 from master-elodin/patch-1
Add VanDoren to names
2021-04-30 14:20:50 -05:00
src Add VanDoren to names 2021-04-30 13:34:41 -05:00
.gitignore Initial commit 2021-04-25 10:29:08 -05:00
jest.config.js Initial commit 2021-04-25 10:29:08 -05:00
package-lock.json 1.0.4 2021-04-30 13:26:00 -05:00
package.json 1.0.4 2021-04-30 13:26:00 -05:00
README.md Updating readme 2021-04-27 14:40:27 -05:00
tsconfig.json Initial commit 2021-04-25 10:29:08 -05:00

Docker Names

An implementation of docker-names in TypeScript. This package unlike the normal docker name generator, generates with a - instead of an _.

Usage

Generate Name

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

const dockerName = generateName();

console.log(dockerName);

//Outputs goofy-panini

Generate Name With Number

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

const dockerName = generateNameWithNumber();

console.log(dockerName);

//Outputs goofy-panini-4

Words

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

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

console.log(left);

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

console.log(right)

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