
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@carisls/xmlreport-reader
Advanced tools
The purpose of this component is reading of standard XML documents with genomics data created by Caris Life Sciences.
It can be used from inside Node.js application API or as an executable CLI.
npm i @carisls/xmlreport-reader
If you want to use it globally (not only inside application folder) you can
install it with -g flag.
npm i -g @carisls/xmlreport-reader
const xmlReader = require('@carisls/xmlreport-reader');
const { promises: fs } = require('fs');
(async() => {
// Get XML file contents
const fileContents = await fs.readFile('./myfile.xml', 'utf8');
// Parse XML into Report
const report = xmlReader(fileContents);
// Prettify report JSON
const reportString = JSON.stringify(report, null, 2);
// Write to console
console.log(reportString);
})()
.catch((err) => {
console.error(err);
});
This component can be run as a CLI, too (outside an application).
xmlreport file.xml
If you want to print its output into some file, you can execute
xmlreport file.xml > output.json
Only few elements are currently supported for extraction:
FAQs
Component for reading of Caris XML Reports
We found that @carisls/xmlreport-reader 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.