Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

LIbrary to load JSON-LD from stdin, URLs, or files.

License

NotificationsYou must be signed in to change notification settings

digitalbazaar/jsonld-request

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

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.

Installation

npm install jsonld-request

Usage

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-clientfor other options.

Security Considerations

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

Commercial support for this library is available upon request fromDigital Bazaar:support@digitalbazaar.com

Source Code

https://github.com/digitalbazaar/jsonld-request

About

LIbrary to load JSON-LD from stdin, URLs, or files.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp