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
Kamilo Amir 280c1068c7
added a cybersecurity hero to the list (#4)
* Added a cybersecurity hero to the list - kaminsky
* Added Kam Amir

Co-authored-by: declanshanaghy <dshanaghy@splunk.com>
2021-05-03 20:21:56 -07:00
src added a cybersecurity hero to the list (#4) 2021-05-03 20:21:56 -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 1.0.5 2021-04-30 18:48:21 -05:00
package.json 1.0.5 2021-04-30 18:48:21 -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...]