0.1.6 • Published 8 years ago

node-wiktionary-translation v0.1.6

Weekly downloads
4
License
MIT
Repository
github
Last release
8 years ago

node-wiktionary-translation

Library for Wiktionary word translation

General notes

Wiktionary.org is a difficult platform to use programmatically as each language has a template of its own (some share a template, but the variation is unbelievably large).

As it currently stands, this library can get word translations without further explanations. The following languages are supported:

Usage

Example:

var wiktionary = require('node-wiktionary-translation')();
// English terms for "Hafen" (German)
wiktionary.getDefinition('Hafen', 'de', 'en', function (terms, err) {
  // terms contains an array of "harbour", "port" and "haven"
});

An optional configuration object can be given as parameter. Currently only a logger can be given, e.g.:

var myOwnLogger = ...;
var wiktionary = require('node-wiktionary-translation')({
  logger: myOwnLogger
});

License

MIT

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago