threewords

0.0.1 • Public • Published

threewords

Build Status

Generate deterministic, human-readable names for things

Installing

npm install --save threewords

Usage

Generate from string:

const threewords = require('threewords');
 
// stable and deterministic (same result every time)
threewords('user@example.com'); // rigid-smothered-lizards
threewords('user@example.com'); // rigid-smothered-lizards

Generate random:

const threewords = require('threewords');
 
// totally random
threewords.random(); // fragile-oversize-rocks
threewords.random(); // fragile-oversize-rocks

CLI from string:

threewords user@example.com
# rigid-smothered-lizards

CLI random

threewords
# fragile-oversize-rocks

Dependencies (0)

    Dev Dependencies (4)

    Package Sidebar

    Install

    npm i threewords

    Weekly Downloads

    0

    Version

    0.0.1

    License

    MIT

    Last publish

    Collaborators

    • spmurrayzzz
    • kevincennis