Package Exports
- solid-web-client
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (solid-web-client) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
solid-web-client
Minimal Solid LDP REST client functionality.
Serves as a standalone library, and is also used inside
solid-client
.
Usage
var rdf = require('rdflib') // or other compatible library
var webClient = require('solid-web-client')(rdf)
webClient.get('https://example.com')
.then(function (response) {
console.log(response)
})