0.6.1 β€’ Published 2 years ago

free-translate v0.6.1

Weekly downloads
301
License
MIT
Repository
github
Last release
2 years ago

A free and unlimited translator for Node.js

πŸˆ‚οΈ β €free text translator for Node.js.

Install

To install free-translate, you can use NPM:

npm install free-translate

Quick examples

const { translate } = require('free-translate');

(async () => {
  const translatedText = await translate('Hello World', { from: 'en', to: 'ja' });

  console.log(translatedText); // γ“γ‚“γ«γ‘γ―δΈ–η•Œ
})();

Automatic language recognition

If the language informed in the from is dynamic, just do not send it and the translator will automatically recognize it:

const { translate } = require('free-translate');

(async () => {
  const translatedText = await translate('This is cool!', { to: 'ja' });

  console.log(translatedText); // γ“γ‚Œγ―γ‚«γƒƒγ‚³γ„γ„οΌ
})();

Support

Contact me!

  • E-mail ribeirogabx@gmail.com

Licensa

License

0.5.0

2 years ago

0.6.1

2 years ago

0.6.0

2 years ago

0.4.0

3 years ago

0.3.0

3 years ago

0.3.1

3 years ago

0.2.0

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago

0.0.3

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago