Socket
Socket
Sign inDemoInstall

combinedtranslate

Package Overview
Dependencies
283
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    combinedtranslate

A translate package that combines multiple API's and packages.


Version published
Weekly downloads
4
decreased by-80%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

CombinedTranslate [BETA]

A package that has multiple translation API's and packages to return an assured response.

Install

npm i combinedtranslate

Note: It will show a bunch of security issues, this has to do with packages using unmaintained versions of fetch API's, like got.

How to Use

Using the package is very easy.

import translate from "combinedtranslate";

const translation = await translate("Hallo Wereld", { to: "English" });
// Output: translation.content = 'Hello World'

Output

{
  content: string, // The content of the translation
  pronunciation: string | null, // If applied, it'll provide a phonetic script.
  translated: boolean, // Whether it translated or not.
  tries: number, // Number of times it switched API's to get the current response.
  time: number // The amount of milliseconds it took to translate the given string.
  language: {
    source: { // The language translating from
        name: string | null, // The name of the language (null when not provided.)
         code: string | null // The ISO code of the language (null when not provided.)
        },
    target: { // The language you're translating to
        name: string, // The name of the target language
         code: string // The ISO code of the target language
        },
    corrected: boolean, // Whether autocorrect on language was used
    certainty: number | null // The percentage of how certain the translator is (null when not provided)
  },
  text: {
    input: string, // The string given on input
    output: string, // The string returned as output or the content
    corrected: boolean, // Whether autocorrect was used on the string
    value: null // The corrected value.
  },
  raw: {
    // The data without it being formatted nicely
  }
}

Translate Options

nametypedefaultdescription
tostringEnglishlanguage to translate to
fromstringnulllanguage to translate from
logOnFailbooleanfalseWhether to log every time an API fails

Methods

import translate, {
  languagesByCode,
  languagesByName,
  languageList,
} from "combinedtranslate";

languagesByCode; // An object with all supported languages by their ISO code.

languagesByName; // An object with all supported languages by their name.

languagesList; // An array of all the languages just by name.

Notes

  • Only compatible with ESM
  • TypeScript and JavaScript support

Keywords

FAQs

Last updated on 13 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc