Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ func main() {
http.ListenAndServe(":8080",
app.Handle(&App{}, lvt.AsState(&State{Name: "there"})))
}</code></pre></div>
<p class="hero-cap">That's the whole app — ~20 lines of Go and standard HTML. No separate frontend, no build step, no generated code.</p>
<p class="hero-cap">That's the whole app — ~20 lines of Go and standard HTML. No SPA framework, no REST API, no build step.</p>
<p class="hero-cap">It reads like a classic server-rendered form, but it <b>behaves like a modern app</b>: the page updates live, with no full reload and no JavaScript you had to write. From here, everything you'd reach for a frontend framework to do — form validation, loading states, progressive enhancement, real-time sync across tabs, multiplayer/collaborative views, file uploads — is a <b>small diff on this exact code</b>. The rest of this page builds them, one step at a time.</p>
</div>
</div></section>

Expand Down
Loading