npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

process-tmx-files

v1.0.1

Published

Process Translation Memory eXchange (TMX) files

Readme

Process TMX Files

Exported Translation Memory eXchange (TMX) files from various translation management systems tend to be quite large. File size becomes an issue when attempting to use these files to train machine translation models. This package utilizes an event streaming XML parser to quickly and efficiently process TMX files.

Requirements

  • Node.js >= v20
  • ESM

Install

npm install process-tmx-files to use in your package.json.

or

npm install -g process-tmx-files to use the command line interface globally.

JavaScript Usage

import processTmx from 'process-tmx-files';

console.log(processTmx.fileStats({
  fileMatch: 'temp/test/*.tmx',
}));

API

This package exports various functions for processing TMX files. These correspond to the CLI commands further in this document.

  • removeInfoElements
  • fileStats
  • searchReplaceAttributes
  • splitFilesByTuCount

CLI Usage

process-tmx-files --help

Available Commands

remove-info-elements

Remove info elements (note and prop) from TMX files. Exported TMX files have an abundance of note and prop elements that inflate the file size. These are usually unnecessary for MT training.

Example removing all info elements

process-tmx-files remove-info-elements -F 'in/*.tmx' -O 'out'

Example removing all info elements except the prop types context_prev and context_next.

process-tmx-files remove-info-elements -W 'temp' -F 'in/*.tmx' -O 'out' -K 'context_prev' -K 'context_next'

file-stats

Count the total number of tu elements in each TMX file. This is useful for gathering info to use in splitting files.

process-tmx-files file-stats -W 'temp' -F 'in/*.tmx'

search-replace-attributes

Search and replace attribute values in TMX files

process-tmx-files search-replace-attributes -W 'temp' -F 'in/*.tmx' -O 'out' -T 'tuv' -A 'xml:lang' -S 'de' -V 'de-DE'

split-files-by-tu-count

Split TMX files by tu element count.

process-tmx-files split-files-by-tu-count -W 'temp' -F 'in/*.tmx' -D 'out'