![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
lingva-scraper-update
Advanced tools
Just install the package using NPM
npm i --save lingva-scraper-update
Or using Yarn
yarn add lingva-scraper-update
And import it directly using CommonJS
const { getTranslationInfo } = require("lingva-scraper-update");
Or with the ES6 syntax
import { getTranslationInfo } from "lingva-scraper-update";
The package doesn't provide a default export, but you can alternatively use the wildcard import syntax
import * as LingvaScraper from "lingva-scraper-update";
getTranslationText(source: LangCode<"source">, target: LangCode<"target">, query: string): Promise<string | null>
Retrieves the translated text given a pair of languages and a query text.
import { getTranslationText } from "lingva-scraper-update";
const translation = await getTranslationText("auto", "es", "win");
getTranslationInfo(source: LangCode<"source">, target: LangCode<"target">, query: string): Promise<TranslationInfo | null>
Retrieves the full translation information, optionally including the detected source, typos, pronunciation representations, definitions, examples, similar words or extra translations.
import { getTranslationInfo } from "lingva-scraper-update";
const info = await getTranslationInfo("zh", "en", "早安");
getAudio(lang: LangCode<"target">, text: string, isSlow?: boolean): Promise<number[] | null>
Retrieves an audio buffer in the form of a Uint8Array
, and represented as a number[]
in order to be serializable.
import { getAudio } from "lingva-scraper-update";
const audio = await getAudio("ca", "gerd");
There are also some utility constants and functions exported in order to ease the use of the package.
LanguageType
An enumeration representing the two language types (source and target) and very used among the rest of utilities.
import { LanguageType } from "lingva-scraper-update";
LanguageType.SOURCE // "source"
LanguageType.TARGET // "target"
languageList
An object that includes the whole list of languages used in this package, as well as two other properties with the language list filtered by type.
import { languageList } from "lingva-scraper-update";
languageList.all // whole list
languageList.source // i.e. languageList[LanguageType.SOURCE]
languageList.target // i.e. languageList[LanguageType.TARGET]
isValidCode()
A function that checks whether a string is a valid language code, optionally differentiating it based on a certain language type.
import { isValidCode } from "lingva-scraper-update";
const isValidLang = isValidCode(str);
const isValidSource = isValidCode(str, LanguageType.SOURCE);
replaceExceptedCode()
A function that checks whether a language code is valid regarding a language type, and changes it with a suitable replacement if not.
import { replaceExceptedCode } from "lingva-scraper-update";
const targetLang = replaceExceptedCode(LanguageType.TARGET, lang);
mapGoogleCode()
A function that maps the given Lingva language code with a valid Google one, in case they're different.
import { mapGoogleCode } from "lingva-scraper-update";
const googleLang = mapGoogleCode(lang);
mapLingvaCode()
A function that maps the given Google language code with a valid Lingva one, in case they're different.
import { mapLingvaCode } from "lingva-scraper-update";
const lang = mapLingvaCode(googleLang);
Thanks goes to these wonderful people (emoji key):
David 💻 📖 🎨 ⚠️ |
This project follows the all-contributors specification. Contributions of any kind welcome!
Copyright © 2022 thedaviddelta & contributors.
This project is GNU GPLv3 licensed.
FAQs
Google Translate scraper for Lingva Translate
The npm package lingva-scraper-update receives a total of 3 weekly downloads. As such, lingva-scraper-update popularity was classified as not popular.
We found that lingva-scraper-update demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.