All Projects → words → similar-english-words

words / similar-english-words

Licence: ISC License
Give me a word and I’ll give you an array of words that differ by a single letter.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to similar-english-words

An Array Of English Words
List of ~275,000 English words
Stars: ✭ 114 (+356%)
Mutual labels:  list, english, words
levenshtein-edit-distance
Levenshtein edit distance
Stars: ✭ 59 (+136%)
Mutual labels:  distance, levenshtein, edit
rhymes
Give me an English word and I’ll give you a list of rhymes
Stars: ✭ 34 (+36%)
Mutual labels:  english, words, en
Stopwords
Removes most frequent words (stop words) from a text content. Based on a Curated list of language statistics.
Stars: ✭ 83 (+232%)
Mutual labels:  distance, levenshtein
Pluralize
Pluralize or singularize any word based on a count
Stars: ✭ 1,808 (+7132%)
Mutual labels:  english, words
Vocabs
📚 A lightweight online dictionary integration to the command line. No browsers. No paperbacks.
Stars: ✭ 226 (+804%)
Mutual labels:  english, words
Textdistance
Compute distance between sequences. 30+ algorithms, pure python implementation, common interface, optional external libs usage.
Stars: ✭ 2,575 (+10200%)
Mutual labels:  distance, levenshtein
Russian Words
List of Russian words
Stars: ✭ 168 (+572%)
Mutual labels:  list, words
words-aas
📕 a simple API to generate unique randomized words & phrases.
Stars: ✭ 69 (+176%)
Mutual labels:  english, words
ety-python
A Python module to discover the etymology of words
Stars: ✭ 110 (+340%)
Mutual labels:  english, words
Profane Words
A very long list of English profanity.
Stars: ✭ 95 (+280%)
Mutual labels:  english, words
stringosim
String similarity functions, String distance's, Jaccard, Levenshtein, Hamming, Jaro-Winkler, Q-grams, N-grams, LCS - Longest Common Subsequence, Cosine similarity...
Stars: ✭ 47 (+88%)
Mutual labels:  distance, levenshtein
go-pluralize
Pluralize and singularize any word (golang adaptation of https://www.npmjs.com/package/pluralize)
Stars: ✭ 60 (+140%)
Mutual labels:  english, words
Stringmetric
🎯 String metrics and phonetic algorithms for Scala (e.g. Dice/Sorensen, Hamming, Jaccard, Jaro, Jaro-Winkler, Levenshtein, Metaphone, N-Gram, NYSIIS, Overlap, Ratcliff/Obershelp, Refined NYSIIS, Refined Soundex, Soundex, Weighted Levenshtein).
Stars: ✭ 481 (+1824%)
Mutual labels:  distance, levenshtein
subtlex-word-frequencies
A list of words from the SUBTLEX movie subtitles corpus, sorted by frequency.
Stars: ✭ 25 (+0%)
Mutual labels:  english, en
simetric
String similarity metrics for Elixir
Stars: ✭ 59 (+136%)
Mutual labels:  distance, levenshtein
cmu-pronouncing-dictionary
The 134,000+ words and their pronunciations in the CMU pronouncing dictionary
Stars: ✭ 46 (+84%)
Mutual labels:  english, en
ienumerable
Deep immutable, Lightweight Enumerable with superpowers
Stars: ✭ 63 (+152%)
Mutual labels:  list
ace-mode-solidity
Ace ( https://ace.c9.io/ ) Edit Mode for Ethereum's Solidity language ( https://solidity.readthedocs.io/en/latest/ ).
Stars: ✭ 25 (+0%)
Mutual labels:  edit
recyclerview-list-drag-and-drop
No description or website provided.
Stars: ✭ 50 (+100%)
Mutual labels:  list

similar-english-words

Build Downloads Size

Give me a word and I’ll give you an array of words that differ by a single letter.

A thing to make levenmorpher faster.

Install

npm:

npm install similar-english-words

Use

var words = require('similar-english-words')

console.log(words.funky)
console.log(words.blank)
console.log(words.not_a_word)

Yields:

[
  'flunky',
  'fundy',
  'funk',
  'funks',
  'funny',
  'gunky',
  'hunky',
  'junky',
  'punky'
]
[
  'bank',
  'black',
  'bland',
  'blanks',
  'blink',
  'blunk',
  'brank',
  'clank',
  'flank',
  'lank',
  'plank',
  'slank'
]
undefined

API

similarEnglishWords

similar-english-words returns an object where each field is a word and the value is a list of related words (Object.<string[]>).

License

ISC © 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].