word-stream 
Returns a stream of English words from the Letterpress Word List
Useful if you're creating a word game or just want some words to work with.
Install
$ npm install --save word-stream
Usage
var wordStream = require('word-stream');
wordStream.on('data', function (word) {
console.log(word);
});
You can get all the words at once by using stream-to-array:
var toArray = require('stream-to-array');
var wordStream = require('word-stream');
toArray(wordStream, function (wordArray) {
console.log(wordArray);
});
CLI
$ npm install --global word-stream
$ word-stream --help
Usage
word-stream
License
MIT © Sindre Sorhus