0.1.0 • Published 10 years ago

random-word-by-length v0.1.0

Weekly downloads
468
License
MIT
Repository
github
Last release
10 years ago

random-word-by-length

Returns a random English word from the Letterpress Word List with an opitonal max length.

Install

$ npm install --save random-word-by-length

Usage

var randomWord = require('random-word-by-length');

randomWord();
//=> ferriferous

randomWord(6);
//=> boride

CLI

You can also use it as a CLI app by installing it globally:

$ npm install --global random-word-by-length

Usage

$ random-word-by-length
ferriferous

$ random-word-by-length -l 5
goor

Tip

Use it to generate project/release names:

$ echo $(random-word-by-length)-$(random-word-by-length)
blacksnake-nautics

License

MIT © Sindre Sorhus