Skip to content

waithawoo/node-deepl-translate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b80a054 · Jun 17, 2023

History

2 Commits
Jun 17, 2023
Jun 17, 2023
Jun 17, 2023
Jun 17, 2023
Jun 17, 2023

Repository files navigation

Node Deepl API Translation

To translate languages with Deepl Translation API

Installation

Install this package via npm.

npm install deepltranslate

Usage

  • import the package and create a new object by passing token
let deeplApi = require("deepltranslate")

let deeplTranslation = new deeplApi({token: 'this is token'})
  • default hostname is 'api.deepl.com' and you can also pass hostname like this :
let deeplTranslation = new deeplApi({token: 'this is token', hostname: 'this is hostname'})

Translate

deeplTranslation.translate("hello", "en", "ja").then((res)=>{
    console.log(res);
})

Get supported languages

deeplTranslation.getLanguages().then((res)=>{
    console.log(res);
})

Security

If you discover any security related issues, please email them to waithawoocw@gmail.com instead of using the issue tracker.

License

The MIT License (MIT). Please see the License File for more information.