Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
@rmlio/yarrrml-parser
Advanced tools
This library allows to convert YARRRML rules to RML or R2RML rules.
npm i -g @rmlio/yarrrml-parser
There are two CLI functions, yarrrml-parser
and yarrrml-generator
.
Using the --help
flag will show all possible commands.
If you want to generate RML rules from a YARRRML document,
you do the following: yarrrml-parser -i rules.yml
.
The rules will be written to standard output.
If you want to write them to a file, you can add the -o
option.
By default, the parser generates RML rules.
If you want to generate R2RML rules add -f R2RML
.
If you want to use rr:class
instead of Predicate Object Maps, use the -c
flag.
You can use multiple input files too: yarrrml-parser -i rules-1.yml -i rules-2.yml
.
They are converted to a single RML document.
Note that the keys in prefixes
, sources
, and mappings
have to be unique across all files.
base
can only be set once.
You find an test/multiple-input-files
.
You can overwrite external references via the -e
.
An external reference starts with _
.
For example, -e name=John
will replace all occurrences of $(_name)
with John
.
Repeat -e
for multiple references.
When you do not provide a value for an external reference,
the reference will not be replaced.
You find an example in test/template-escape
.
If you want to use for example $(_name)
as both an external reference and a normal reference,
then you add a \
for the latter resulting in $(\_name)
for the latter.
If you want to generate YARRRML rules from an RML document, you do the following: yarrrml-generator -i rules.rml.ttl
.
The rules will be written to standard output.
If you want to write them to a file, you can add the -o
option.
npm i --save @rmlio/yarrrml-parser
let yarrrml = require('@rmlio/yarrrml-parser/lib/rml-generator');
const yaml = "[yarrrml string]";
const y2r = new yarrrml();
const triples = y2r.convert(yaml);
npm i
npm test
npm link
(optional).Run (from DockerHub):
docker run --rm -it -v $(pwd)/resources:/data rmlio/yarrrml-parser:latest -i /data/test.yarrr.yml
Build from source:
docker build -t yarrrml-parser .
This code is copyrighted by Ghent University – imec and released under the MIT license.
FAQs
Parse YARRRML descriptions into RML RDF statements
The npm package @rmlio/yarrrml-parser receives a total of 502 weekly downloads. As such, @rmlio/yarrrml-parser popularity was classified as not popular.
We found that @rmlio/yarrrml-parser demonstrated a healthy version release cadence and project activity because the last version was released less than 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
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.