An implementation of docker-names in TypeScript. Forked from https://github.com/criblio/docker-names.
- Added more names of scientists related to
- chemical engineering
- animal breeding
- rumen science
- among others...
- Changed the delimiter to an underscore when adding extra data (date or number)
- Added an identifier that starts with a date (useful where identifiers have to be sorted chronologically).
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.
import {generateName} from '@millironx/docker-names'
const dockerName = generateName();
console.log(dockerName);
//Outputs goofy-panini
import {generateNameWithNumber} from '@millironx/docker-names'
const dockerName = generateNameWithNumber();
console.log(dockerName);
//Outputs goofy-panini_4
import {generateNameWithDate} from '@millironx/docker-names'
const dockerName = generateNameWithDate();
console.log(dockerName);
//Outputs 20210720_goofy-panini
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...]