docs: add How it works section explaining the JSS wrapper split#7
Open
melvincarvalho wants to merge 1 commit into
Open
docs: add How it works section explaining the JSS wrapper split#7melvincarvalho wants to merge 1 commit into
melvincarvalho wants to merge 1 commit into
Conversation
Answers 'is this a fork? a proxy?' up front: servejss is a thin launcher that translates serve-style flags into a jss start invocation and never touches requests. Spells out what lives in the wrapper (CLI, public-mode defaults, port switching, banner, child process) vs upstream JSS (all request handling and Solid features), so behavior issues get filed in the right repo.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds a short How it works section right after Why? — the README explained what servejss is for but never what it is relative to JSS. The only hints were the install note about the global-
jssfallback and a Related Projects link.The new section answers "is this a fork? a proxy?" up front:
serve-style flags into ajss startinvocation, runs it in--publicmode against your directory, handles port switching, banner, and the child process--soliddrops the public default and starts JSS as a full authenticated Solid serverDocs only, no code changes.