wikitranslate

Wikipedia translation as a service

Usage no npm install needed!

<script type="module">
  import wikitranslate from 'https://cdn.skypack.dev/wikitranslate';
</script>

README

WikiTranslate

Circle CI

Ask experts from around the globe to find the exact translation for technical terms. Not only is Wikipedia a great source of knowledge, it's also a great translation tool !

Wiki 1

This package provides a translation module.

Usage

  • Install it: yarn add wikitranslate
  • Require it: let wikiTranslate = require('wikitranslate');
  • Use it:
wikiTranslate('Permittivité', 'fr', 'en')
.then((translations) => {
  console.log(translation); // { wikipedia: ['Permittivity'], wiktionary: ['Permittivity'] }
})