node-solid-server
node-solid-server copied to clipboard
Solid server on top of the file-system in NodeJS
@timbl @michielbdejong @RubenVerborgh @highlevellogic Trying NSS on a windows pod `https://bourgeoa.solid.hll.nu:7443` . Tested the `chat with me` from OS solid The function returns a PUT error 500 > FAILED to...
## Please describe what you did in reproducible steps Put foo and foo.ttl with no content-type specified. In both cases the server serves them as "text/plain"/ ## How did it...
@csarven @michielbdejong @jeff-zucker >When a POST method request with the Slug header targets an auxiliary resource, the server MUST respond with the 403 status code and response body describing the...
You can create resources : 1. https://pod/foo.txt with content-type `text/plain` => creates file : `/foo.txt` 2. https://pod/foo.txt with content-type `text/turtle` => creates file `/foo.txt$.ttl` 3. https://pod/foo.txt/ as a container =>...
When a parent container changes, it's not picked up by https://github.com/solid/node-solid-ws/blob/master/index.js because that code only looks at the URL of the request and has no way of knowing whether any...
When you do two consecutive write operations on the same resource, the data has to go to disk and go back into memory in-between the first and the second request....
When I write the following data to my Pod: ``` @prefix : . @prefix schem: . :160581889284507796464006133086 a schem:MonetaryAmount; schem:amount 1.0; schem:currency "USD". ``` Written using the following request: ```...
When getting access to `https://bourgeoa.solidcommunity.net/public/tiddlywiki/index1.html` I receive an `async-lock timed out` No difference if I am or not connected.
I'm using ``` /opt/solid $ solid -V 5.3.1 ``` from the `nodesolidserver/node-solid-server` image on docker hub. The documentation for `solid start` says: > --redirect-http-from [value] HTTP port or ','-separated ports...
The docker installation instructions (https://github.com/solid/node-solid-server#use-docker) have a step: docker cp solid:/usr/src/app/config.json . However by default this file doesn't exist, I get an error: > Error: No such container:path: solid:/usr/src/app/config.json I...