threewords-happy
v0.0.3
Published
Generate happier three-word identifiers
Readme
threewords
Generate deterministic, human-readable names for things
Installing
npm install --save threewordsUsage
Generate from string:
const threewords = require('threewords');
// stable and deterministic (same result every time)
threewords('[email protected]'); // rigid-smothered-lizards
threewords('[email protected]'); // rigid-smothered-lizardsGenerate random:
const threewords = require('threewords');
// totally random
threewords.random(); // fragile-oversize-rocks
threewords.random(); // fragile-oversize-rocksCLI from string:
threewords [email protected]
# rigid-smothered-lizardsCLI random
threewords
# fragile-oversize-rocks