├── LICENSE.md └── README.md /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright 2019 - present 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 5 | 6 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # solid-platform 2 | [![](https://img.shields.io/badge/project-Solid-7C4DFF.svg?style=flat-square)](https://github.com/solid/solid) 3 | 4 | Servers, Tools and packages built on the 5 | [Solid platform](https://github.com/solid/solid-spec). 6 | (See also [solid-apps](https://github.com/solid/solid-apps) for a list of 7 | end-user applications). 8 | 9 | ## Servers 10 | Actively maintained. 11 | 12 | Name | [LDP](https://www.w3.org/TR/ldp/) | [CORS](https://github.com/solid/solid-spec/blob/master/recommendations-server.md) | [WebID](https://github.com/solid/solid-spec/blob/master/solid-webid-profiles.md) IdP | [WebID-TLS](https://github.com/solid/solid-spec/blob/master/authn-webid-tls.md) | [WebID-OIDC](https://github.com/solid/webid-oidc-spec) | [WebID-RSA](https://github.com/solid/solid/blob/master/proposals/auth-webid-rsa.md) | WebID-Delegation | [WAC](https://github.com/solid/web-access-control-spec) | [WSS](https://github.com/solid/solid-spec/blob/master/api-websockets.md) | Open Source | 13 | -----|-----|:----:|:--------------:|:---------:|:----------:|:---------:|:----------------:|:---:|:---:|:-------:| 14 | [gold](https://github.com/linkeddata/gold)|Basic Containers, file storage|Proxy|Yes|Yes|No|Yes|Yes|Yes|Yes|Yes| 15 | [node-solid-server](https://github.com/solid/node-solid-server/)|Basic Containers, file storage|Proxy|Yes|Yes|Yes|No|In Progress|Yes|Yes|Yes| 16 | [OpenLink Virtuoso](http://virtuoso.openlinksw.com/)|Basic Containers, file storage, SEARCH, PATCH|Yes|Yes|Yes|In Progress|Not Planned|Yes|Yes|Yes|No| 17 | [rww-play](https://github.com/read-write-web/rww-play)|Basic Containers, file storage, SEARCH|Proxy|Yes|Yes|No|No|N/A|Yes|?|Yes| 18 | 19 | ##### [gold](https://github.com/linkeddata/gold) 20 | *No longer under active development (the team is focusing on LDNode), 21 | gold is in bugfix/maintenance mode.* 22 | Reference Solid platform server written in Go. 23 | See [databox.me](https://databox.me/) for an example instance. 24 | 25 | ##### [node-solid-server](https://github.com/solid/node-solid-server/) 26 | Reference Solid platform server written in Node.js/Express. 27 | 28 | ##### [OpenLink Virtuoso](http://virtuoso.openlinksw.com/) 29 | More specifically, the WebDAV File System Module a/k/a OpenLink Data Spaces (ODS) Layer.  [ODS](http://ods.openlinksw.com/owiki/wiki/ODS) is a Data Space Shim built around [Virtuoso](https://virtuoso.openlinksw.com/)'s WebDAV layer that adheres to Solid conventions of — 30 | * Identity — via WebID 31 | * Identity Verification (or Authentication) — via WebID+TLS or WebID-OIDC _(WebID-OIDC is still a work-in-progress)_ 32 | * Document Access Controls (or Authorization) — via WebACLS or WAC 33 | * Read-Write Operations on Documents — via HTTP PATCH using `application/sparql-update` payloads 34 | 35 | Minimum installation atop basic Virtuoso (Enterprise Edition only) installation is Virtuoso Authentication Layer (VAL), ODS-Framework, and ODS-Briefcase VADs. 36 | 37 | ##### [rww-play](https://github.com/read-write-web/rww-play) 38 | LDP-compliant Read-Write-Web server written in Scala/Play/akka. 39 | 40 | 41 | ## Legacy Servers 42 | No longer actively maintained. 43 | 44 | ##### [ldphp](https://github.com/linkeddata/ldphp) 45 | LDP PHP server, implementing LDP Basic Containers and file serving. 46 | Not implemented: WAC, WebID-RSA, or WebID-Delegation. 47 | 48 | ## Libraries 49 | 50 | ### Node.js 51 | * [node-webid](https://github.com/linkeddata/node-webid/) - library to manage 52 | [WebID](http://www.w3.org/2005/Incubator/webid/spec/identity/) identities 53 | and certificates. 54 | 55 | * [rdflib.js](https://github.com/linkeddata/rdflib.js/) - RDF library for 56 | [Linked Data](http://www.w3.org/DesignIssues/LinkedData.html) applications. 57 | 58 | * [solid.js](https://github.com/solid/solid.js) - library to interact with 59 | [Solid](https://github.com/solid/solid-spec)-compliant applications. 60 | Creates and manages LDP containers, provides WebID authentication, and more. 61 | --------------------------------------------------------------------------------