https://chrome.google.com/webstore/detail/webclip-clip-all-the-thin/mfgjcggbpdkbnnpgllaicoeplfgkfnkj (default pod-provider solidcommunity.net) by Angelo
https://umai.noeldemartin.com/ (capable of CSS) by Noel
https://chrome.google.com/webstore/detail/webclip-clip-all-the-thin/mfgjcggbpdkbnnpgllaicoeplfgkfnkj (default pod-provider solidcommunity.net) by Angelo
https://umai.noeldemartin.com/ (capable of CSS) by Noel
Today we present solidweb.me, a Community Solid Server instance.
The system is to be thought of a Linked Data backend, that lets you host and share your files in an interoperable way. Muttersprachliche Begleitung finden Sie auf https://www.serverproject.de/t7/ .
More to come soon, it’s an ongoing work.

const $rdf = global.$rdf = require('rdflib');
const kb = $rdf.graph();
const client = new (require("solid-node-client").SolidNodeClient)();
const fetcher = $rdf.fetcher(kb,{fetch:client.fetch.bind(client)});
const uri = "https://testpro.solidweb.org/profile/card#me";
async function test(){
await fetcher.load(uri);
first = kb.sym(uri);
pred = kb.sym("http://xmlns.com/foaf/0.1/knows");
let results = kb.match(first,pred);
for (var s of results) {
console.log('friend\'s webid : ',s.object.value);
}
}
test();