Simple Node.js module for accessing CFILT's WordNet dictionary.
$ npm install wordnet-hi
An example how to use the module is located in examples/lookup.js.
var wordnet = require('wordnet-hi');
wordnet.lookup('हवन', function(err, definitions) {
definitions.forEach(function(definition) {
console.log(' words: %s', definition.meta.words.map(x => x.word).join(" "));
console.log(' %s', definition.glossary);
});
});
GNU GPL 3.0 License