
Security News
Cline CLI npm Package Compromised via Suspected Cache Poisoning Attack
A compromised npm publish token was used to push a malicious postinstall script in cline@2.3.0, affecting the popular AI coding agent CLI with 90k weekly downloads.
@nodesecure/i18n
Advanced tools
Internationalization (**i18n**) utilities for NodeSecure tools like [CLI](https://github.com/NodeSecure/cli).
This package is available in the Node Package Repository and can be easily installed with npm or yarn.
$ npm i @nodesecure/i18n
# or
$ yarn add @nodesecure/i18n
import * as i18n from "@nodesecure/i18n";
await i18n.setLocalLang("french");
console.log(i18n.getToken("depWalker.dep_tree"));
// Using parameters
console.log(i18n.getToken("depWalker.success_tarball", "14", "15ms"));
You can consult the real use case of the API in the following codes: here and here.
[!NOTE] Feel free to open a PR to push a new language
See TypeScript definition file.
type languages = "french" | "english";
export function getLocalLang(): Promise<languages>;
export function setLocalLang(newLanguage: languages): Promise<void>;
export function getToken(token: string, ...parameters): Promise<string>;
export function getTokenSync(token: string, ...parameters): string;
export function getLanguages(): Promise<languages[]>;
export function taggedString(str: string, ...keys: any[]): (...keys: any[]) => string;
export function extend(language: string, tokens: Record<string, any>): void;
export function extendFromSystemPath(path: string): Promise<void>;
[!NOTE] Local lang must be updated otherwise
getTokenSync()will throws. Make sure to useawait i18n.getLocalLang()before any synchronous usage.
You can generate a static webpage by using the build:documentation npm script:
$ npm run build:documentation
Feel free to add a new language. You need to take inspiration from the two supported languages and replicate the same keys.
Then export it in the index.js file (example if we want to add a chinese translation).
export * as chinese from "./chinese.js";
MIT
FAQs
NodeSecure Internationalization
The npm package @nodesecure/i18n receives a total of 740 weekly downloads. As such, @nodesecure/i18n popularity was classified as not popular.
We found that @nodesecure/i18n demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
A compromised npm publish token was used to push a malicious postinstall script in cline@2.3.0, affecting the popular AI coding agent CLI with 90k weekly downloads.

Product
Socket is now scanning AI agent skills across multiple languages and ecosystems, detecting malicious behavior before developers install, starting with skills.sh's 60,000+ skills.

Product
Socket now supports PHP with full Composer and Packagist integration, enabling developers to search packages, generate SBOMs, and protect their PHP dependencies from supply chain threats.