Simple Node.js module for accessing Princeton University's WordNet dictionary.
$ npm install wordnet
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);
});
});
MIT License