@solid/community-server
Version:
Community Solid Server: an open and modular implementation of the Solid specifications
39 lines (38 loc) • 1.33 kB
JSON
{
"@context": [
"https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^8.0.0/components/context.jsonld",
"https://linkedsoftwaredependencies.org/bundles/npm/asynchronous-handlers/^1.0.0/components/context.jsonld"
],
"@graph": [
{
"comment": "Disables notification routing.",
"@id": "urn:solid-server:default:NotificationHttpHandler",
"@type": "StaticThrowHandler",
"onlyHandle": false,
"factory": { "@id": "urn:solid-server:default:UnsupportedErrorFactory" }
},
{
"@id": "urn:solid-server:default:WebSocketHandler",
"@type": "StatusWaterfallHandler",
"handlers": [
{
"comment": "Catches the server upgrade events and handles the WebSocket connections.",
"@type": "UnsecureWebSocketsProtocol",
"source": { "@id": "urn:solid-server:default:ResourceStore" },
"baseUrl": { "@id": "urn:solid-server:default:variable:baseUrl" }
}
]
},
{
"@id": "urn:solid-server:default:ParallelMiddleware",
"@type": "ParallelHandler",
"handlers": [
{
"comment": "Advertises the websocket connection.",
"@type": "WebSocketAdvertiser",
"baseUrl": { "@id": "urn:solid-server:default:variable:baseUrl" }
}
]
}
]
}