Skip to content

pbrln/node-deepl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-deepl

Translation package using deepl.com's undocumented API.

Installation

npm install node-deepl --save or if you are using yarn yarn add node-deepl

Usage

const translate = require('node-deepl');

translate("Hello there, what's going on?", "EN", "DE", (err, res) => {
    if(err) {
        console.log(err);
        return;
    }
    console.log('Result: ', res);
});

Languages

Code Language
auto Autodetect (input only!)
DE German
EN English
FR French
ES Spanish
IT Italian
NL Dutch
PL Polish

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published