wordnet-hi
v0.0.1
Published
Hindi-Hindi dictionary with 80k+ words from WordNet.
Downloads
2
Maintainers
Readme
WordNet.js
Simple Node.js module for accessing CFILT's WordNet dictionary.
Installation
$ npm install wordnet-hi
How to use
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);
});
});
License
GNU GPL 3.0 License