Package Exports
- @criblinc/docker-names
- @criblinc/docker-names/lib/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@criblinc/docker-names) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
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...]