A Go package to write HTML5 and HTMX components in Go. The package is designed to work with fiber and htmx.
- Write declartive HTML5 components in Go without using templates and with the full-power of a type-safe language, auto-completion, and refactoring.
- Full support for HTMX components.
- No dependencies on JavaScript frameworks.
- Fast rendering of HTML5 and HTMX components.
- Easy to use and learn.
- Easy to extend and customize.
Creating a button leveraging htmx is as easy as this.
htmx.Button(
htmx.Attribute("type", "submit")
htmx.Text("Button"),
htmx.HxPost("/api/respond")
)
$ go get github.com/zeiss/fiber-htmx
Write HTML5 and HTMX components in Go.
func HelloWorld() htmx.Node {
return htmx.Div(
htmx.ClassNames{
"font-semibold",
},
htmx.Text("Hello World"),
)
}
There are different types of composition. For example, passing children to a component.
func HelloWorld(children ...htmx.Node) htmx.Node {
return htmx.Div(
htmx.ClassNames{
"font-semibold",
},
htmx.Text("Hello World"),
htmx.Div(
htmx.ClassNames{
"text-red-500",
},
htmx.Group(children...),
),
)
}
Styling of components is done with the htmx.ClassNames
type.
func HelloWorld() htmx.Node {
return htmx.Div(
htmx.ClassNames{
"font-semibold": true,
"text-red-500": true,
},
htmx.Text("Hello World"),
)
}
There are also helpers to make the life with styling easier by merging classes.
func HelloWorld(classes htmx.ClassNames) htmx.Node {
return htmx.Div(
htmx.Merge(
htmx.ClassNames{
"font-semibold",
"text-red-500",
},
classes,
)
htmx.Text("Hello World"),
)
}
There are additional complex components that help to write HTML5 and HTMX components in Go.
There is also the option to use htmx.Controller
to encapsulate the logic of the components.
func NewHelloWorldController() htmx.ControllerFactory {
return func() htmx.Controller {
return &NewHelloWorldController{}
}
}
type HelloWorldController struct {
htmx.DefaultController
}
func (c *HelloWorldController) Get() error {
return htmx.RenderComp(
c.Ctx(),
htmx.HTML5(
htmx.HTML5Props{
Title: "index",
Language: "en",
Head: []htmx.Node{},
},
htmx.Div(
htmx.ClassNames{},
htmx.Text("Hello World"),
),
),
)
}
app := fiber.New()
app.Get("/", htmx.NewHxControllerHandler(NewHelloWorldController())
app.Listen(":3000")
See examples to understand the provided interfaces.
BenchmarkElement-10 12964440 77.40 ns/op
Benchmark_AttrRender-10 16038232 74.15 ns/op
Benchmark_HTML5_Render-10 1392 847193 ns/op
Benchmark_ClassNames_Render-10 3166761 378.2 ns/op
Rendering 10.000
nodes took >0.8ms
. The package is fast enough to render HTML5 and HTMX components.