node-solid-server
node-solid-server copied to clipboard
Solid server on top of the file-system in NodeJS
When I do a HEAD request to a Container, I get a Content-Type of `application/octet-stream`: ``` $ curl --head https://vincent-test.inrupt.net/public/ # ... Content-Type: application/octet-stream; charset=utf-8 ``` even though an actual...
From https://github.com/solid/node-solid-ws/issues/1 https://github.com/inrupt/websockets-pubsub/issues/5 The fix: https://github.com/inrupt/websockets-pubsub/blob/2c5e097c670a679d2f2072683c88e1216de3a307/src/lib/hub.ts#L76
As noted on solid-auth-client https://github.com/solid/solid-auth-client/issues/151, Chrome is requiring third party cookies to be set with `SameSite=None` and `Secure`. While this setting is not yet active on desktop, it is active...
Did (with node 13.6.0, npm 6.13.4, Mac OS 10.14.6): >sudo npm install -g solid-server >solid init And got: node-solid-server: solid init internal/modules/cjs/loader.js:628 throw e; ^ Error: No valid exports main...
There is a rumour that some Turtle files take a long time to convert to JSON-LD. Does anybody have an example?
Issue can be seen in action here (view the Network requests in your browser's DevTools): https://codesandbox.io/s/inruptsolid-client-js-sandbox-forked-xyvbg?file=/src/index.ts `GET` https://vincent-test.inrupt.net/public/booleantest.ttl: ``` @prefix : . @prefix n0: . :me n0:testbool true. ``` Alright,...
When uploading a different file type, e.g. overwriting `something.jpg` with `something.png`, it won’t actually work and the original image remains, but the server happily responds with a 201. I understand...
Currently NSS will serve a response with Link `rel=acl` that points to another ACL resource, e.g. https://megoth.solid.community/.acl will have a Link `rel=acl` that points to https://megoth.solid.community/.acl.acl. I don't think the...
I appear to be able to read, and overwrite files with a PUT, files in a private folder when logged in to a different account. The example I found is...
I installed the latest Solid-server. Using a self-signed certificate. ``` $ ./bin/solid-test init ? Path to the folder you want to serve. Default is [mypath]/node-solid-server/data ? SSL port to run...