- Notifications
You must be signed in to change notification settings - Fork8
LIbrary to load JSON-LD from stdin, URLs, or files.
License
digitalbazaar/jsonld-request
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
This JavaScriptNode.js library is used to read data from stdin, URLs, orfiles and convert toJSON-LD viajsonld.js. It can process JSON-LD inJSON and RDFa in HTML and output JSON-LD.
npm install jsonld-request
Import the main function:
import{jsonldRequest}from'jsonld-request';
Read from stdin:
const{data}=awaitjsonldRequest('-');
Read from URL:
const{response, data}=awaitjsonldRequest('https://www.example.com/resource');
Read from file:
const{data}=awaitjsonldRequest('file.jsonld');
Read from URL with headers and agent:
importhttpsfrom'https';// use custom headersconstheaders={Example:'example'};// use an agent to avoid self-signed certificate errorsconstagent=newhttps.Agent({rejectUnauthorized:false});const{response, data}=awaitjsonldRequest('https://www.example.com/resource',{ headers, agent});
Options include:
- base: The document base. (default: auto-detect)
- encoding: The data encoding. (default: utf8)
- dataType: The data type as a media type or shorthand. (default:auto-detect)
- headers: Headers for the request. (default:
Accept
). - agent: An agent to use for HTTP/HTTPS requests. (default: none)
- allow: Array of allowed loaders. (default:
['stdin', 'file', 'http', 'https']
)
See@digitalbazaar/http-client
for other options.
WARNING: This code can load from stdin and arbitrary file locations! It isintended to provide low level support for resource loading. Please make surethe calling code sanitizes inputs to avoid security issues. Do not use this asa plainjsonld.js document loader without proper protections!
Theallow
option can assist in only enabling certain loaders.
Commercial support for this library is available upon request fromDigital Bazaar:support@digitalbazaar.com
About
LIbrary to load JSON-LD from stdin, URLs, or files.