Socket
Socket
Sign inDemoInstall

combinedtranslate

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

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
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
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,
  tries: number, // Number of times it switched API's to get the current response.
  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 // No idea what this is...
  },
  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

Package last updated on 23 Dec 2022

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc