docs: rewrite the web development guide#3224
Open
bartlomieju wants to merge 5 commits into
Open
Conversation
Restore last_modified (the site renders it as the visible last-updated date), pass the project name to create-astro so the cd that follows is guaranteed to match, and add a deno install step to the Docusaurus section so the scaffold works on machines without npm.
Pass the directory to @fresh/init so the cd that follows matches (same fix as Astro), and add --skip-install to create-docusaurus so the generator does not invoke npm itself; deno install handles it.
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.
The web development guide was the weakest page in the runtime section: a
marketing intro, framework sections that were just a scaffold command plus
"open your browser", blanket -A on every command, and stale commands. This
is a full rewrite. Every framework section now has its scaffold command
verified against that framework's own documentation (Fresh was additionally
scaffolded for real to confirm the generated project shape: Vite dev server,
nodeModulesDir manual, deno.lock), how to run it under Deno, and a short
honest note on what's actually different under Deno (config file, when
node_modules is needed, lockfile, realistic permissions; where the scaffold
genuinely needs -A the page says so instead of pretending).
The no-framework path links the HTTP server guide and covers Hono and Oak,
which this page now owns (the HTTP server guide links here). URL and all
redirect entries are unchanged.