npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dolmetscher

v1.1.1

Published

A flexible FREE and UNLIMITED node package to translate between different languages in a simple way using multiple translators.

Downloads

59

Readme

dolmetscher

npm GitHub Workflow Status https://twitter.com/NidhalBaccouri

Translations for humans

A flexible FREE and UNLIMITED node package to translate between different languages in a simple way using multiple translators.

NOTE: Dolmetscher is a german word that refers to a person who professionally translates statements in a foreign language.

Dolmetscher supports the google and mymemory translator, which gives flexibility to the user to choose the translator he wants to use or to compare & automate translations.

Why you should use dolmetscher?

  • most of translation library for node are buggy and does not work properly
  • dolmetscher is stable and maintained regularly
  • dolmetscher is lightweight and fast
  • dolmetscher depends only on the axios library, not like other packages, which depend on multiple other packages.

Motivation

There are other libraries that can be used for this task, but let's face it, most of them are buggy, not free, limited, not supported anymore or complex to use.

Therefore, I decided to build this simple tool. It is 100% free, unlimited, easy to use and provide support for all languages.

Basically, my goal was to integrate support for multiple famous translators in this tool.

This package idea is inspired from my python deep_translator package, where multiple translators are integrated in one too.

Features:

  • Support for google translator
  • Simple text translation
  • Batch translation
  • File translation
  • Support for the Mymemory translator (version >= 0.0.3)

Installation

npm install dolmetscher --save

Usage

Imports

const {GoogleTranslator, MymemoryTranslator} = require('dolmetscher');

Google Translator:

In this section, usage example of the GoogleTranslator are provided

Check supported languages
// you can check the supported languages first 
console.log("google translate supported languages are: ", GoogleTranslator.getSupportedLanguages());
Simple Text Translation
/*
- you need to create a GoogleTranslator object.
- the first argument is the target language to translate to
- the second argument is the source language (default to auto)
- provide the text you want to translate as an argument to the translate function

*/
const google = new GoogleTranslator('en', 'auto');

google.translateText("bonjour la vie").then(res => console.log("translatedText: ", res));
  • Alternatively you can use the async/await syntax:

async function translate() {
    let google = new GoogleTranslator('en', 'auto');

    try {
        const res = await google.translateText("bonjour la vie");
        return res;
    }

    catch(err) {
        console.log("translation error: ", err);
    }
    
}

Batch Translation

const google = new GoogleTranslator('en', 'auto');
 const texts = ['bonsoir le monde', 'Hallo Welt', 'guten morgen'];

google.translateBatch(texts)
            .then(res => console.log("batch translation: ", res));
File Translation

const google = new GoogleTranslator('en', 'auto');
const filePath = 'your_file_path.txt';

google.translateFile(f)
            .then(res => console.log("translated file: ", res));

Mymemory Translator:

In this section, usage example of the MymemoryTranslator are provided

Check supported languages
// you can check the supported languages first 
console.log("Mymemory supported languages are: ", MymemoryTranslator.getSupportedLanguages());
Simple Text Translation
/*
- the first argument is the target language to translate to
- the second argument is the source language (provide this argument for better results)
- Finally, provide the text you want to translate as an argument to the translate function

*/
const mymemory = new MymemoryTranslator("fr", "en");

mymemory.translateText("keep it up, you are awesome")
.then(res => console.log("mymemory result: ", res));
Batch Translation

const mymemory = new MymemoryTranslator("fr", "en");

const texts = ["Hello world", "How are you"];

mymemory.translateBatch(texts)
.then(res => console.log("mymemory result: ", res));
File Translation

const mymemory = new MymemoryTranslator("en", "de");
const filePath = 'your_file_path.txt';

mymemory.translateFile(filePath)
.then(res => console.log("mymemory result: ", res));

Tests

open terminal and run this command to run the test suite

npm run test

Examples

There are examples for each translator in the examples folder. Feel free to check it out.

Contributions

Contributions are always welcome. Feel free to make a pull request. I would appreciate it if you star the github repo so that other devs notice it.

Please feel free to open an issue if you encountered any problems or if you have a new idea or enhancement.