Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@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:
# with flag only for < v16
node --experimental-repl-await
> const prefixes = await import("@thi.ng/prefixes");
Package sizes (gzipped, pre-treeshake): ESM: 1.12 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>
Karsten Schmidt
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 - 2022 Karsten Schmidt // Apache Software License 2.0
FAQs
50+ Linked Data vocabulary prefixes and their namespace URLs
The npm package @thi.ng/prefixes receives a total of 303 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.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.