solid-client
solid-client copied to clipboard
Javascript client library for Solid applications
https://github.com/solid/solid-client#registering-and-un-registering-types-in-the-type-registry `profile.typeRegistryForClass()` returns an array of registrations, `profile.unregisterType()` should accept reference to one of those registrations and just remove that particular one. Renaming it to `removeTypeRegistration()` may make it more...
Currently, `response.exists()` will never return false (since the `web.solidRequest()` method returns an error object when `status < 300`). Fix this.
Add a convenience method (on the SolidResponse class) to return the WebID of the user who created that resource (see parent issue https://github.com/solid/solid/issues/111). Pre-requisite: https://github.com/solid/node-solid-server/issues/408.
Currently if `login(url)` is called with a url which the currently authenticated user does not have access to, it throws an error. `login()` shouldn't care whether the user is authorized,...
Per conversation with @csarven - need to drop the hash fragment portion of the WebID profile link before loading the profile.
"Both Login and Signup functions return the user's WebID. Sometimes users don't have a WebID account, and in that case they need to sign up for one. The signup process...
Refactor solid.js to allow the user to just pass in an rdf parser lib as a dependency or config setting. (Support non-rdflib parsers like SimpleRDF)
See https://github.com/solid/solid-spec#globbing-inlining-on-get
The current example and method used is to complicated. Simplicity and speed is important. Instead of - Create a new folder - Create a new resource with a post and...