在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:digitalbazaar/jsonld.js开源软件地址:https://github.com/digitalbazaar/jsonld.js开源编程语言:JavaScript 99.9%开源软件介绍:jsonld.jsIntroductionThis library is an implementation of the JSON-LD specification in JavaScript. JSON, as specified in RFC7159, is a simple language for representing objects on the Web. Linked Data is a way of describing content across different documents or Web sites. Web resources are described using IRIs, and typically are dereferencable entities that may be used to find more information, creating a "Web of Knowledge". JSON-LD is intended to be a simple publishing method for expressing not only Linked Data in JSON, but for adding semantics to existing JSON. JSON-LD is designed as a light-weight syntax that can be used to express Linked Data. It is primarily intended to be a way to express Linked Data in JavaScript and other Web-based programming environments. It is also useful when building interoperable Web Services and when storing Linked Data in JSON-based document storage engines. It is practical and designed to be as simple as possible, utilizing the large number of JSON parsers and existing code that is in use today. It is designed to be able to express key-value pairs, RDF data, RDFa data, Microformats data, and Microdata. That is, it supports every major Web-based structured data model in use today. The syntax does not require many applications to change their JSON, but easily add meaning by adding context in a way that is either in-band or out-of-band. The syntax is designed to not disturb already deployed systems running on JSON, but provide a smooth migration path from JSON to JSON with added semantics. Finally, the format is intended to be fast to parse, fast to generate, stream-based and document-based processing compatible, and require a very small memory footprint in order to operate. ConformanceThis library aims to conform with the following:
The JSON-LD Working Group is now developing JSON-LD 1.1. Library updates to conform with newer specifications will happen as features stabilize and development time and resources permit.
The test runner is often updated to note or skip newer tests that are not yet supported. InstallationNode.js + npm
const jsonld = require('jsonld'); Browser (bundler) + npm
Use your favorite bundling technology (webpack, Rollup, etc) to
directly bundle your code that loads Browser BundlesThe built npm package includes bundled code suitable for use in browsers. Two versions are provided:
The two bundles can be used at the same to to allow modern browsers to use
newer code. Lookup using Also see the Browser (AMD) + npm
Use your favorite technology to load CDNJS CDNTo use CDNJS include this script tag: <script src="https://cdnjs.cloudflare.com/ajax/libs/jsonld/1.0.0/jsonld.min.js"></script> Check https://cdnjs.com/libraries/jsonld for the latest available version. jsDeliver CDNTo use jsDeliver include this script tag: <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jsonld.min.js"></script> See https://www.jsdelivr.com/package/npm/jsonld for the latest available version. unpkg CDNTo use unpkg include this script tag: <script src="https://unpkg.com/[email protected]/dist/jsonld.min.js"></script> See https://unpkg.com/jsonld/ for the latest available version. JSPM
import * as jsonld from 'jsonld';
// or
import {promises} from 'jsonld';
// or
import {JsonLdProcessor} from 'jsonld'; Node.js native canonize bindingsFor specialized use cases there is an optional rdf-canonize-native package
available which provides a native implementation for
ExamplesExample data and context used throughout examples below: const doc = {
"http://schema.org/name": "Manu Sporny",
"http://schema.org/url": {"@id": "http://manu.sporny.org/"},
"http://schema.org/image": {"@id": "http://manu.sporny.org/images/manu.png"}
};
const context = {
"name": "http://schema.org/name",
"homepage": {"@id": "http://schema.org/url", "@type": "@id"},
"image": {"@id": "http://schema.org/image", "@type": "@id"}
}; compact// compact a document according to a particular context
const compacted = await jsonld.compact(doc, context);
console.log(JSON.stringify(compacted, null, 2));
/* Output:
{
"@context": {...},
"name": "Manu Sporny",
"homepage": "http://manu.sporny.org/",
"image": "http://manu.sporny.org/images/manu.png"
}
*/
// compact using URLs
const compacted = await jsonld.compact(
'http://example.org/doc', 'http://example.org/context', ...); expand// expand a document, removing its context
const expanded = await jsonld.expand(compacted);
/* Output:
{
"http://schema.org/name": [{"@value": "Manu Sporny"}],
"http://schema.org/url": [{"@id": "http://manu.sporny.org/"}],
"http://schema.org/image": [{"@id": "http://manu.sporny.org/images/manu.png"}]
}
*/
// expand using URLs
const expanded = await jsonld.expand('http://example.org/doc', ...); flatten// flatten a document
const flattened = await jsonld.flatten(doc);
// output has all deep-level trees flattened to the top-level frame// frame a document
const framed = await jsonld.frame(doc, frame);
// output transformed into a particular tree structure per the given frame canonize (normalize)// canonize (normalize) a document using the RDF Dataset Normalization Algorithm
// (URDNA2015), see:
const canonized = await jsonld.canonize(doc, {
algorithm: 'URDNA2015',
format: 'application/n-quads'
});
// canonized is a string that is a canonical representation of the document
// that can be used for hashing, comparison, etc. toRDF (N-Quads)// serialize a document to N-Quads (RDF)
const nquads = await jsonld.toRDF(doc, {format: 'application/n-quads'});
// nquads is a string of N-Quads fromRDF (N-Quads)// deserialize N-Quads (RDF) to JSON-LD
const doc = await jsonld.fromRDF(nquads, {format: 'application/n-quads'});
// doc is JSON-LD Custom RDF Parser// register a custom synchronous RDF parser
jsonld.registerRDFParser(contentType, input => {
// parse input to a jsonld.js RDF dataset object... and return it
return dataset;
});
// register a custom promise-based RDF parser
jsonld.registerRDFParser(contentType, async input => {
// parse input into a jsonld.js RDF dataset object...
return new Promise(...);
}); Custom Document Loader// how to override the default document loader with a custom one -- for
// example, one that uses pre-loaded contexts:
// define a mapping of context URL => context doc
const CONTEXTS = {
"http://example.com": {
"@context": ...
}, ...
};
// grab the built-in Node.js doc loader
const nodeDocumentLoader = jsonld.documentLoaders.node();
// or grab the XHR one: jsonld.documentLoaders.xhr()
// change the default document loader
const customLoader = async (url, options) => {
if(url in CONTEXTS) {
return {
contextUrl: null, // this is for a context via a link header
document: CONTEXTS[url], // this is the actual document that was loaded
documentUrl: url // this is the actual context URL after redirects
};
}
// call the default documentLoader
return nodeDocumentLoader(url);
};
jsonld.documentLoader = customLoader;
// alternatively, pass the custom loader for just a specific call:
const compacted = await jsonld.compact(
doc, context, {documentLoader: customLoader}); Node.js Document Loader User-AgentIt is recommended to set a default Related Modules
Commercial SupportCommercial support for this library is available upon request from Digital Bazaar: [email protected] SourceThe source code for the JavaScript implementation of the JSON-LD API is available at: http://github.com/digitalbazaar/jsonld.js TestsThis library includes a sample testing utility which may be used to verify that changes to the processor maintain the correct output. The main test suites are included in external repositories. Check out each of the following:
They should be sibling directories of the jsonld.js directory or in a
Node.js tests can be run with a simple command:
If you installed the test suites elsewhere, or wish to run other tests, use
the
This feature can be used to run the older json-ld.org test suite:
Browser testing can be done with Karma:
Code coverage of node tests can be generated in
To display a full coverage report on the console from coverage data:
The Mocha output reporter can be changed to min, dot, list, nyan, etc:
Remote context tests are also available:
To generate EARL reports:
To generate an EARL report with the
The EARL
Optionally follow the report instructions to generate the HTML report for inspection. Maintainers can submit updated results as needed. BenchmarksBenchmarks can be created from any manifest that the test system supports. Use a command line with a test suite and a benchmark flag:
EARL reports with benchmark data can be generated with an optional environment details:
See These reports can be compared with the |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论