docker-names
v1.2.1
Published
Generates names identical to dockers i.e. [adjective]_[surname]
Downloads
30,517
Maintainers
Readme
Docker-Names
Docker Names generates semi-random, easy to remember names similar to how docker names its containers. For example, desperate_fermi
, cranky_heyrovsky
or tender_mahavira
.
Or as seen from the docker client container list:
Current Build Status:
Usage
Usage is very simple as this module only exports one method:
var dockerNames = require('docker-names');
console.log(dockerNames.getRandomName());
$ angry_nobel
Additionally, per dockers specification they have a "retry" counter that appends a random* number if set to true or a number greater than 0. For example:
console.log(dockerNames.getRandomName(true));
$ jolly_mclean3
console.log(dockerNames.getRandomName(3));
$ backstabbing_roentgen5
*
This uses Math.random which means its not very random. These names should never be used as any sort of unique id. The names are mostly applicable for small lists of ephemeral objects that you want to have easy to remember identifiers for.
Word Lists
This module exports the full docker name lists as two arrays.
// This contains all adjectives i.e. "left words"
dockerNames.adjectives = Array('admiring', 'adoring'...);
// This contains all surnames to use as "right words"
dockerNames.surnames = Array('albattani', 'allen' ...);