An open API service indexing awesome lists of open source software.

https://github.com/zachey01/deepljs

💬 Unofficial DeepL API (without apikey)
https://github.com/zachey01/deepljs

cli deepl deepl-api deepl-translation-api free-deepl

Last synced: 18 days ago
JSON representation

💬 Unofficial DeepL API (without apikey)

Awesome Lists containing this project

README

        

# Unofficial api for DeepL — free-deepl

This is a simple Node.js module that allows you to interact with the DeepL API for translation services.

Installation
You can install the free-deepl package using npm:

```shell
npm install free-deepl
```

```js
const deepljs = require("free-deepl");

(async () => {
let sourceLang = "en";
let targetLang = "ru";
let text = "Hello";

console.log(await deepljs(sourceLang, targetLang, text));
})();
```

Command Line Interface (CLI)
You can also use free-deepl via the command line interface:

```shell
deepljs
```