New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

define-word-promise

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

define-word-promise

Grabs word definition from Dictionary.com or synonyms from Thesaurus.com and parses into an object

  • 1.0.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Define-Word-Promise

An easy-to-use defintions and synonyms finder

Based in https://www.npmjs.com/package/define-word

API

This API is very small. There are only two function and they is synchonous.

Define

>> require("define-word").define("word")

<< { type: 'noun',
  definitions: 
   [ 'a unit of language, consisting of one or more spoken sounds or their written representation, that functions as a principal carrier of meaning. Words are composed of one or more morphemes and are either the smallest units susceptible of independent use or consist of two or three such units combined under certain linking conditions, as with the loss of primary accent that distinguishes black·bird· from black· bird·. Words are usually separated by spaces in writing, and are distinguished phonologically, as by accent, in many languages.',
     '(used in combination with the first letter of an offensive or unmentionable word, the first letter being lowercase or uppercase, with or without a following hyphen): My mom married at 20, and she mentions the m-word every time I meet someone she thinks is eligible.See also f-word, n-word.',
     'words.speech or talk: to express one\'s emotion in words; Words mean little when action is called for.the text or lyrics of a song as distinguished from the music.contentious or angry speech; a quarrel: We had words and she walked out on me.',
     'a short talk or conversation: Marston, I\'d like a word with you.',
     'an expression or utterance: a word of warning.',
     'warrant, assurance, or promise: I give you my word I\'ll be there.',
     'news; tidings; information: We received word of his death.',
     'a verbal signal, as a password, watchword, or countersign.',
     'an authoritative utterance, or command: His word was law.',
     'Also called machine word. Computers. a string of bits, characters, or bytes treated as a single entity by a computer, particularly for numeric purposes.',
     '(initial capital letter). Also called the Word, the Word of God. the Scriptures; the Bible.the Logos.the message of the gospel of Christ.',
 'a proverb or motto.' ] }

This allows for easy use with no hassle. An example word-definer program:

getDefinition (text) {
    var defineWord = require("define-word");
    defineWord.define(text).then(function (res) {
        return res;
    }).catch(function(err) {
            console.log('err',err);
    });
}
    

Synonym Finder

    >> getSynonym (text) {
            var defineWord = require("define-word");
            defineWord.synonyms(text).then(function (res) {
                return res;
            }).catch(function(err) {
                 console.log('err',err);
            });
        }
    << [ 'topography',
  'geopolitics',
  'earth science',
  'geology',
  'cartography',
  'physiography',
  'topology',
  'chorography',
  'geopolitical study',
  'physiographics' ]

All defintions from Dictionary.com
All synonyms from Thesaurus.com
Happy defining!

Keywords

FAQs

Package last updated on 16 Sep 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc