JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 28
  • Score
    100M100P100Q48360F
  • License MIT

Solid LDP REST client

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

NPM Version Build Status

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)
  })