0.0.1 • Published 9 years ago

find-synonyms v0.0.1

Weekly downloads
5
License
ISC
Repository
github
Last release
9 years ago

find-synonyms

Find synonyms for words in Node

Built off @cgiffard's synonym package, this module is just a wrapper around WordNet to easily provide synonyms.

Usage

Install with npm:

$ npm install find-synonyms

Use in your project:

var synonyms = require('find-synonyms');

// Finds up to n synonyms of word
synonyms(word, n, function (syns) {
  // syns has length at most n and has synonyms of word
});