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
2021-05-11 15:56:13 -05:00
.github/workflows Adding actions to ensure tests pass (#13) 2021-05-11 09:52:11 -07:00
src Adding actions to ensure tests pass (#13) 2021-05-11 09:52:11 -07: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 Release 1.0.7 2021-05-11 13:53:31 -07:00
package.json Release 1.0.7 2021-05-11 13:53:31 -07: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...]