Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
combinedtranslate
Advanced tools
A package that has multiple translation API's and packages to return an assured response.
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.
Using the package is very easy.
import translate from "combinedtranslate";
const translation = await translate("Hallo Wereld", { to: "English" });
// Output: translation.content = 'Hello World'
{
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
}
}
name | type | default | description |
---|---|---|---|
to | string | English | language to translate to |
from | string | null | language to translate from |
logOnFail | boolean | false | Whether to log every time an API fails |
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.
FAQs
A translate package that combines multiple API's and packages.
The npm package combinedtranslate receives a total of 1 weekly downloads. As such, combinedtranslate popularity was classified as not popular.
We found that combinedtranslate demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.