
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Command line tool that merges any number of XLF 1.2 files, JSON text dictionaries, and ARB text dictionaries. Input and output is tested and compatible with Angular compiler.
Designed for (but not limited to) Angular-based applications to simplify their i18n process. The NG compiler requires a single dictionay file per language. If your translations are organized into many small files, you can run this tool to merge them before invoking the Angular compilation.
# Install globally (run by xlf-merge <parameters>)
npm install xlf-merge -g
# Install locally as development tool (run by node ./node_modules/xlf-merge <parameters>)
npm install xlf-merge --save-dev
# Merges three input files into output.xlf
xlf-merge input1.xlf input2.xlf input3.xlf --output all-translations.xlf
# Merges all language-specific XLF files in directory i18n into a file containing all translations per language
xlf-merge i18n/*.en.xlf -o all.en.xlf
xlf-merge i18n/*.de.xlf -o all.de.xlf
xlf-merge i18n/*.fr.xlf -o all.fr.xlf
# Merges *.de.xlf files recursively in the current path
xlf-merge **/*.de.xlf -o all.de.xlf
# Merges all XLF and JSON files with patterns *.de.xlf and *.de.json. Merged file has JSON format.
xlf-merge i18n/**/*.de.xlf i18n/**/*.de.json --output all.de.json
# Converts all XLF files in current directory into JSON format
xlf-merge *.xlf --convert json
# Recursively converts all XLF files into ARB format
xlf-merge **/*.xlf --convert arb
Supposing XLF files are in path src/i18n/**. German translations have pattern *.de.xlf, Swedish translations have pattern *.sv.xlf.
"scripts": {
"merge-de": "node ./node_modules/xlf-merge src/i18n/**/*.de.xlf",
"merge-sv": "node ./node_modules/xlf-merge src/i18n/**/*.sv.xlf",
"merge-all": "npm run merge-de && npm run merge-sv",
"build": "npm run merge-all && ng build --prod"
}
Jaroslav Svak, 2018 - 2021
MIT
FAQs
Command-line tool for merging XLF files
The npm package xlf-merge receives a total of 405 weekly downloads. As such, xlf-merge popularity was classified as not popular.
We found that xlf-merge demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.