Start Here
What Changed
High-level changes covered by the latest GoLazy guides.
Latest overview
The latest guides show GoLazy as a framework that can start small and grow into a conventional application structure:
- A new Single-File App guide shows the
smallest useful GoLazy app in one
main.go. - The application initializer now lives at top-level
init, notapp/init. - Rendering is owned by
lazyview, withlazyview/gotmplproviding thehtml/templateengine. - Helpers are registered as plain Go functions. Router helpers provide
path_for, and the view layer providespartial. - The GoLazy website and framework README now point to stable
/guides/latest/...guide URLs.
Read Views and Layouts for rendering and helper behavior. Read Application Structure when the one-file version starts needing directories.