solid-web-client
v0.3.2
Published
Solid LDP REST client
Downloads
14
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)
})