Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@narando/languages
Advanced tools
Centralized list of available languages + dialects.
You need to have nodejs
and npm
installed.
$ npm install @narando/languages
Currently this module only exports two constant Objects LanguageCodes
and Languages
.
LanguageCodes is a reference object for language short codes.
import { LanguageCodes } from "@narando/languages";
LanguageCodes.de_DE; // => "de_DE"
LanguageCodes["de_DE"]; // => "de_DE"
To get a list of available shortcodes use Object.keys
:
Object.keys(LanguageCodes); // => ["de_DE", "en_GB", "en_US", ...]
Languages contains the actual Language details. It is an object and the shortcodes are the properties.
import { Languages } from "@narando/languages";
Languages.de_DE;
/* => {
* name: "German (Germany)",
* shortCode: "de_DE",
* dialects: [
* "Bairisch",
* "Sächsisch",
* ...
* ]
* }
*/
}
Some more useful functions
In case you are trying to fill a selectpicker or something comparable. It could be usefull to get the language object with a selected flag.
import { Utils } from "@narnado/languages";
res.locals.languages = Utils.getLanguagesWithSelection("es-419");
// The function returns a list with all languages.
// es-419 is the only language with a selected=true
In case you want to get the language object but want to get the translated language names. The languages are available in English (US) und German (Germany). More languages will be added in the future.
import { Utils } from "@narnado/languages";
res.locals.languages = Utils.translateLanguages("de-DE");
// example: de-DE is now Deutsch (Deutschland)
FAQs
Centralized list of available languages + dialects.
The npm package @narando/languages receives a total of 0 weekly downloads. As such, @narando/languages popularity was classified as not popular.
We found that @narando/languages demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.