1.0.0 • Published 7 years ago

node-deepl v1.0.0

Weekly downloads
2
License
MIT
Repository
-
Last release
7 years ago

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

CodeLanguage
autoAutodetect (input only!)
DEGerman
ENEnglish
FRFrench
ESSpanish
ITItalian
NLDutch
PLPolish