
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
tsv-groupdata-parser
Advanced tools
Parses the translationNotes TSVs files to generate the GroupIndex and GroupData for the translationCore Desktop app.
Parses the translationNotes TSV files to generate the GroupsIndex and GroupsData for the translationCore Desktop app.
import {
tsvToGroupData,
categorizeGroupData,
formatAndSaveGroupData
} from 'tsv-groupdata-parser';
// tsvToGroupData() example
const filepath = '__tests__/fixtures/tsv/en_tn_57-TIT.tsv';
const originalBiblePath = '__tests__/fixtures/resources/el-x-koine/bibles/ugnt/v0.11';
tsvToGroupData(filepath, "translationNotes", null, originalBiblePath).then((data) => {
const groupData = data;
});
// Or with async/await
const groupData = await tsvToGroupData(filepath, "translationNotes", null, originalBiblePath);
// tsvToGroupData() example with categorized group data.
const categorizedGroupData = await tsvToGroupData(filepath, "translationNotes", { categorized: true }, originalBiblePath);
// categorizeGroupData() example
const categorizedGroupData = categorizeGroupData(groupData)
const rootOutputPath = 'translationCore/resources/en/thelps/tNotes'
// formatAndSaveGroupData() example
formatAndSaveGroupData(categorizedGroupData, rootOutputPath, 'tit')
npm i unfoldingWord/tsv-groupdata-parser#my-feature-branch in your translationCore root directory.rm -rf node_modules/tsv-groupdata-parser; npm i tsv-groupdata-parser;Builds are made using babel 7 (babel-cli) for more infor see: Babel CLI docs
FAQs
Parses the translationNotes TSVs files to generate the GroupIndex and GroupData for the translationCore Desktop app.
The npm package tsv-groupdata-parser receives a total of 104 weekly downloads. As such, tsv-groupdata-parser popularity was classified as not popular.
We found that tsv-groupdata-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.