
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
xbrl-parser
Advanced tools
XBRL parser and utility for parsing XBRL files.
The library was created specifically for parsing XBRL annual reports for Danish companies to extract income statement and balance data from the (slightly different) taxonomies used for annual reports and consolidate them in the same JSON-like format.
It has very limited support for US-GAAP taxonomy as well.
npm install --save xbrl-parser
Given a string containing an XBRL XML file (the full contents, not the filename), it will be parsed into a "raw" XBRL format which can be passed on to other parsers. The only parser supported right now is the Danish annual report parser.
import { parseXbrlFile } from 'xbrl-parser';
// Maybe this was loaded with the fs module or from an http request
const xmlString = '<?xml version="1.0" encoding="UTF-8"?><xbrli:xbrl>...</xbrli:xbrl>';
const xbrl = parseXbrlFile(xmlString);
console.log(xbrl);
Using the Danish annual report parser:
import { CvrParser, parseAnnualReport } from 'xbrl-parser';
const report = parseAnnualReport(xmlString, new CvrParser());
console.log(report);
The CvrParser
is named like that since it parses information fetched from the Danish national registry cvr.dk. There is also a USGAAPParser
for for parsing XBRL for the US-GAAP taxonomy.
The code contains some comments for specific cases that have been discovered along the way. Some of the more interesting ones:
Usually, the xbrl instance root element is <xbrli:xbrl>
.
The standard also mentions this here: https://specifications.xbrl.org/xbrl-essentials.html
However, in the wild, other namespaces (or no namespaces) have been observed (like <xbrl>
), which may or may not be valid.
In order to make the output more consistent, there are two options:
This library uses the second choice, such that parsed XBRL documents use xbrli:
as namespace prefix for XBRL-specific fields.
The taxonomies for Danish annual reports is documented here (in Danish).
For this taxonomy, namespace renaming also happens for some annual reports, and this library tries to correct it.
Taxonomies for US-GAAP are available here.
The taxonomy is currenty mapped from only publicly traded companies which might have different reporting structure than SMEs.
In other words: Use with caution :D
FAQs
Module for parsing XBRL files for specific market taxonomies
The npm package xbrl-parser receives a total of 25 weekly downloads. As such, xbrl-parser popularity was classified as not popular.
We found that xbrl-parser demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.