node-dictionary.js

0.0.3 • Public • Published

Advanced dictionary module for NodeJS.

Türkçe;

const dictionary = require('node-dictionary.js');

let kelime = await dictionary.trFindWord("araba");
console.log(kelime)

Çıktı;

{
    kelime: 'araba',
    anlamı: 'iki ya da dört tekerli, hayvan gücüyle çeklilen taşıt',
    örnek: 'Bir at arabası geliyor'
}

English;

const dictionary = require('node-dictionary.js');

let word = await dictionary.enFindWord("hello");
console.log(word)

Output;

{
  word: 'hello',
  meaning: 'Used as a greeting or to begin a phone conversation.',
  example: 'hello there, Katie!'
}

French;

const dictionary = require('node-dictionary.js');

let word = await dictionary.frFindWord("hello");
console.log(word)

Output;

{
  mot: 'bonjour',
  sens: 'Souhait de bonne journée (adressé en arrivant, en rencontrant).',
}

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.3
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.3
    1
  • 0.0.2
    0
  • 0.0.1
    0

Package Sidebar

Install

npm i node-dictionary.js

Weekly Downloads

1

Version

0.0.3

License

MIT

Unpacked Size

4.55 kB

Total Files

3

Last publish

Collaborators

  • bridev