3.1.0 • Published 5 years ago

word-list v3.1.0

Weekly downloads
2,693
License
MIT
Repository
github
Last release
5 years ago

word-list Build Status

List of English words

Useful if you're creating a word game or just want some words to work with.

Used by word-stream and random-word.

One-letter words are not included. Many common bad words are also filtered out.

Install

$ npm install word-list

Usage

const fs = require('fs');

// Returns the path to the word list which is separated by `\n`
const wordListPath = require('word-list');

const wordArray = fs.readFileSync(wordListPath, 'utf8').split('\n');
//=> […, 'abmhos', 'abnegate', …]