All Projects → words → An Array Of English Words

words / An Array Of English Words

Licence: mit
List of ~275,000 English words

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to An Array Of English Words

similar-english-words
Give me a word and I’ll give you an array of words that differ by a single letter.
Stars: ✭ 25 (-78.07%)
Mutual labels:  list, english, words
an-array-of-spanish-words
List of ~636,000 Spanish words
Stars: ✭ 31 (-72.81%)
Mutual labels:  word, array, words
ety-python
A Python module to discover the etymology of words
Stars: ✭ 110 (-3.51%)
Mutual labels:  english, words
spdx-license-ids
a list of SPDX license identifiers
Stars: ✭ 29 (-74.56%)
Mutual labels:  list, array
ienumerable
Deep immutable, Lightweight Enumerable with superpowers
Stars: ✭ 63 (-44.74%)
Mutual labels:  list, array
translate english
Java程序员阅读源码必知英语单词
Stars: ✭ 24 (-78.95%)
Mutual labels:  word, english
words-aas
📕 a simple API to generate unique randomized words & phrases.
Stars: ✭ 69 (-39.47%)
Mutual labels:  english, words
lingose-notation
The best mnemonics and notational system of English words.
Stars: ✭ 17 (-85.09%)
Mutual labels:  word, english
Pluralize
Pluralize or singularize any word based on a count
Stars: ✭ 1,808 (+1485.96%)
Mutual labels:  english, words
Mlib
Library of generic and type safe containers in pure C language (C99 or C11) for a wide collection of container (comparable to the C++ STL).
Stars: ✭ 321 (+181.58%)
Mutual labels:  array, list
go-pluralize
Pluralize and singularize any word (golang adaptation of https://www.npmjs.com/package/pluralize)
Stars: ✭ 60 (-47.37%)
Mutual labels:  english, words
Android interviews
🚀Everything you need to know to find a android job. 算法 / 面试题 / Android 知识点 🔥🔥🔥 总结不易,你的 star 是我最大的动力!
Stars: ✭ 510 (+347.37%)
Mutual labels:  array, list
rhymes
Give me an English word and I’ll give you a list of rhymes
Stars: ✭ 34 (-70.18%)
Mutual labels:  english, words
subtlex-word-frequencies
A list of words from the SUBTLEX movie subtitles corpus, sorted by frequency.
Stars: ✭ 25 (-78.07%)
Mutual labels:  word, english
Vocabs
📚 A lightweight online dictionary integration to the command line. No browsers. No paperbacks.
Stars: ✭ 226 (+98.25%)
Mutual labels:  english, words
Twelveish
🕛 Twelveish - Android Wear/Wear OS Watch Face
Stars: ✭ 29 (-74.56%)
Mutual labels:  word, english
Containers
This library provides various containers. Each container has utility functions to manipulate the data it holds. This is an abstraction as to not have to manually manage and reallocate memory.
Stars: ✭ 125 (+9.65%)
Mutual labels:  array, list
Coinlist
Comprehensive list of cryptocurrencies with metadata
Stars: ✭ 148 (+29.82%)
Mutual labels:  array, list
Smart Array To Tree
Convert large amounts of data array to tree fastly
Stars: ✭ 91 (-20.18%)
Mutual labels:  array, list
Random Word
This is a simple python package to generate random english words
Stars: ✭ 75 (-34.21%)
Mutual labels:  word, words

an-array-of-english-words

Build Downloads Size

List of ~275,000 English words. Derived from the Letterpress word list.

Install

npm:

npm install an-array-of-english-words

Use

var words = require('an-array-of-english-words')

console.log(words.filter(d => /fun/.test(d)))

Yields:

[
  'antifungal',
  'antifungals',
  'bifunctional',
  'cofunction',
  'cofunctions',
  // …and many more
]

API

anArrayOfEnglishWords

Array.<string> — List of all English words, lowercased.

CLI

Install the CLI globally:

npm i -g an-array-of-english-words

Now run words to print all the words to stdout:

words

Use grep to filter by pattern:

words | grep cheese

Use egrep to filter with regular expressions:

words | egrep '^fun'            # start with 'fun'
words | egrep 'ification$'      # end with 'ification'
words | egrep 'ou?r$'           # end in 'or' or 'our'

Use wc to find out how many monkey words there are:

words | grep monkey | wc -l

Ten random ten-letter words (note: on macOS, do brew install coreutils to get gshuf):

$ words | egrep '^.{10}$' | gshuf | head -10

Related

License

MIT © Zeke Sikelianos

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].