Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@thi.ng/prefixes
Advanced tools
This project is part of the @thi.ng/umbrella monorepo.
50+ Linked Data vocabulary prefixes and their namespace URLs.
STABLE - used in production
Search or submit any issues for this package
yarn add @thi.ng/prefixes
ES module import:
<script type="module" src="https://cdn.skypack.dev/@thi.ng/prefixes"></script>
For Node.js REPL:
const prefixes = await import("@thi.ng/prefixes");
Package sizes (brotli'd, pre-treeshake): ESM: 1.03 KB
None
This package only contains constants, no actual code. Please see source code for full list provided.
Note: some namespace URIs exist in two flavors - for RDF vocab and
as XML namespace. The latter versions are always prefixed with XML_
,
e.g.:
import { xsd, XML_XSD } from "@thi.ng/prefixes";
xsd // http://www.w3.org/2001/XMLSchema#
XML_XSD // http://www.w3.org/2001/XMLSchema
All current
@thi.ng/hiccup
consumers/processors support RDFa
attributes and specifically allow the prefix
attrib value to be given
as object of prefixes. This allows for very compact prefix definitions
like so:
import { serialize } from "@thi.ng/hiccup";
import { article, body, div, h1, html } from "@thi.ng/hiccup-html";
import { dc, schema } from "@thi.ng/prefixes";
serialize(
html({ lang: "en" },
body({ prefix: { dc, schema } },
article({ resource: "/posts/hello-world", typeof: "schema:BlogPosting"},
h1({ property: "dc:title" }, "Hello World"),
div({ property: "schema:articleBody" }, "...")
)
)
)
);
Serialized HTML/RDFa result:
<html lang="en">
<body prefix="dc: http://purl.org/dc/elements/1.1/ schema: http://schema.org/">
<article resource="/posts/hello-world" typeof="schema:BlogPosting">
<h1 property="dc:title">Hello World</h1>
<div property="schema:articleBody">...</div>
</article>
</body>
</html>
If this project contributes to an academic publication, please cite it as:
@misc{thing-prefixes,
title = "@thi.ng/prefixes",
author = "Karsten Schmidt",
note = "https://thi.ng/prefixes",
year = 2020
}
© 2020 - 2023 Karsten Schmidt // Apache License 2.0
FAQs
50+ Linked Data vocabulary prefixes and their namespace URLs
The npm package @thi.ng/prefixes receives a total of 504 weekly downloads. As such, @thi.ng/prefixes popularity was classified as not popular.
We found that @thi.ng/prefixes 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.
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.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.