See https://github.com/DeepLcom/deepl-node for the official client. Thanks to everyone contributing over the years. Bye! 👋
See the official documentation for the available parameters.
You can make a simple request using the following code.
const params: TranslationParameters = {
auth_key: your.authentication.key,
text: 'This is a sentence.',
target_lang: Language.French,
};
await translate(params);
Which will return a TranslationResponse
, containing an array with the translation, and the detected source language.
{
"translations": [
{
"detected_source_language": "EN",
"text": "C'est une phrase."
}
]
}
To translate an array of text, you can use the translateMultiple
function.
const params: TranslationMultipleParameters = {
auth_key: your.authentication.key,
target_lang: Language.French,
};
const text = ['This is a sentence.', 'This is another sentence.'].
await translateMultiple(params, text);
Which will return the same TranslationResponse
, except with more entries.
{
"translations": [
{
"detected_source_language": "EN",
"text": "C'est une phrase."
},
{
"detected_source_language": "EN",
"text": "C'est une autre phrase."
}
]
}
To see the usage statistics linked to your authorization key, you can use the usage
function.
const params: UsageParameters = {
auth_key: your.authentication.key
};
await usage(params);
Which will return a UsageResponse
, containing the used character count and the set characterl limit.
{
"character_count":398,
"character_limit":5000000
}
Missing something? Don't hesitate to open an issue or pull request!
Install the dependencies using npm ci
.
Run the linter with npm run lint
.
Copy the env.example
file and add a valid API key.
Run the tests with npm t
.