wordnet-hi

0.0.1 • Public • Published

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

3rd-party License

CFILT's WordNet License

Package Sidebar

Install

npm i wordnet-hi

Weekly Downloads

0

Version

0.0.1

License

GPL

Unpacked Size

21.7 MB

Total Files

15

Last publish

Collaborators

  • ajaybhatt17