All Projects → mhinz → node-thesaurus-com

mhinz / node-thesaurus-com

Licence: MIT license
Look up synonyms/antonyms on thesaurus.com.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to node-thesaurus-com

syn
syn - the thesaurus
Stars: ✭ 45 (+164.71%)
Mutual labels:  thesaurus, synonyms, antonyms
wordhoard
This Python module can be used to obtain antonyms, synonyms, hypernyms, hyponyms, homophones and definitions.
Stars: ✭ 78 (+358.82%)
Mutual labels:  synonyms, antonyms
synonym-extractor
Extract synonyms, keywords from sentences using modified implementation of Aho Corasick algorithm
Stars: ✭ 38 (+123.53%)
Mutual labels:  synonyms
skosprovider
A python abstraction for SKOS vocabularies
Stars: ✭ 14 (-17.65%)
Mutual labels:  thesaurus
solr-ontology-tagger
Automatic tagging and analysis of documents in an Apache Solr index for faceted search by RDF(S) Ontologies & SKOS thesauri
Stars: ✭ 36 (+111.76%)
Mutual labels:  thesaurus
alfred-powerthesaurus
Search Powerthesaurus synonyms and antonyms from Alfred
Stars: ✭ 81 (+376.47%)
Mutual labels:  thesaurus
waylan android
A dictionary concept for Android ~ Making words and their meanings available through a natural and beautiful experience
Stars: ✭ 13 (-23.53%)
Mutual labels:  thesaurus
mw-thesaurus.el
Merriam-Webster Thesaurus in Emacs
Stars: ✭ 84 (+394.12%)
Mutual labels:  thesaurus
leximaven
A command line tool for searching word-related APIs.
Stars: ✭ 20 (+17.65%)
Mutual labels:  thesaurus
linguistic-datasets-portuguese
Linguistic Datasets for Portuguese: Lista de conjuntos de dados linguísticos para língua portuguesa com licença flexíveis: banco de dados, lista de palavras, sinônimos, antônimos, dicionário temático, tesauro, linked data, semântica, ontologia e representação de conhecimento
Stars: ✭ 46 (+170.59%)
Mutual labels:  thesaurus
poet-assistant
Android app with rhyming dictionary, thesaurus, and dictionary, with text-to-speech functionality to read your poem.
Stars: ✭ 64 (+276.47%)
Mutual labels:  thesaurus
skos-play
SKOS-Play allows to print SKOS files in HTML or PDF. It also embeds xls2rdf to generate RDF from Excel.
Stars: ✭ 58 (+241.18%)
Mutual labels:  thesaurus
Meilisearch
Powerful, fast, and an easy to use search engine
Stars: ✭ 20,236 (+118935.29%)
Mutual labels:  synonyms
Typesense
Fast, typo tolerant, fuzzy search engine for building delightful search experiences ⚡ 🔍 ✨ An Open Source alternative to Algolia and an Easier-to-Use alternative to ElasticSearch.
Stars: ✭ 8,644 (+50747.06%)
Mutual labels:  synonyms
Synonyms
🌿 中文近义词:聊天机器人,智能问答工具包
Stars: ✭ 4,027 (+23588.24%)
Mutual labels:  synonyms
elasticsearch-analysis-synonym
NGramSynonymTokenizer for Elasticsearch
Stars: ✭ 25 (+47.06%)
Mutual labels:  synonyms
elasticsearch-dynamic-synonym
Elasticsearch Plugin for Dynaic Synonym Token Filter.
Stars: ✭ 38 (+123.53%)
Mutual labels:  synonyms
querqy-elasticsearch
Querqy for Elasticsearch
Stars: ✭ 37 (+117.65%)
Mutual labels:  synonyms

Build Status npm

Description

Use thesaurus.com to look up synonyms and, if available, antonyms.

Moreover, it comes with an executable called tcom, which can be used to start a search from the shell. The output is either plain-text (by default) or JSON.

Installation

$ npm install -g thesaurus-com

Or install it into the current directory, so you can play around with it:

$ npm install --save thesaurus-com

(The executable can then be found at ./node_modules/.bin/tcom.)

Usage

var tcom = require('thesaurus-com');

console.log(tcom.search('never'));

// { synonyms:
//   [ 'at no time',
//     'don\'t hold your breath',
//     'forget it',
//     'nevermore',
//     'no way',
//     'not at all',
//     'not ever',
//     'not in any way',
//     'not in the least',
//     'not on your life',
//     'not under any condition' ],
//  antonyms: [ 'always', 'forever' ] }
$ tcom always
Synonyms: consistently, constantly, eternally, ever, everlastingly, evermore, for keeps, forevermore, in perpetuum, invariably, perpetually, regularly, repeatedly, till blue in the face, till cows come home, till hell freezes over, unceasingly, without exception
Antonyms: at no time, never
$ tcom -j always
{"synonyms":["consistently","constantly","eternally","ever","everlastingly","evermore","for keeps","forevermore","in perpetuum","invariably","perpetually","regularly","repeatedly","till blue in the face","till cows come home","till hell freezes over","unceasingly","without exception"],"antonyms":["at no time","never"]}
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].