Showcases server-rendered partial fragments and manual boundary replacement.
Key files:
index.htmldefines aproductboundary and load button.main.jsregisters a server function, async partial, and click handler that renders then swaps the partial result.
Start from the repo root:
python3 -m http.server 4173Open http://127.0.0.1:4173/examples/partials/.
Verify:
pnpm run examples:checkDelegated handler contexts expose signals, handlers, loader, server,
cache, and scheduler — but not the partial registry. Rendering a partial
from a handler therefore reaches the runtime through the module-scope
runtime binding. This is the intended pattern for partial-driven swaps
today.