Skip to content
forked from words/wordnet

Node module wrapper for WordNet dictionary.

Notifications You must be signed in to change notification settings

asifaly/wordnet

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WordNet.js

Simple Node.js module for accessing Princeton University's WordNet dictionary.

Installation

$ npm install wordnet

How to use

An example how to use the module is located in examples/lookup.js.

var wordnet = require('wordnet');

wordnet.lookup('define', function(err, definitions) {

  definitions.forEach(function(definition) {
    console.log('  words: %s', words.trim());
    console.log('  %s', definition.glossary);
  });

});

License

MIT License

3rd-party License

Princeton University's WordNet License

About

Node module wrapper for WordNet dictionary.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published