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)
- Host: GitHub
- URL: https://github.com/zachey01/deepljs
- Owner: zachey01
- Created: 2024-03-14T12:16:16.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-25T10:32:45.000Z (7 months ago)
- Last Synced: 2024-10-29T09:06:26.150Z (7 months ago)
- Topics: cli, deepl, deepl-api, deepl-translation-api, free-deepl
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/free-deepl
- Size: 890 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
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
```