Standalone Binary
Compile your whole application, including your assets, to a standalone binary.
Standalone Binary
Compile your whole application, including your assets, to a standalone binary.
Web Standards
Promotes leverage of web standards to improve robustness.
Render Modes
Switch rendering modes at runtime.
send.View(client, views.View{ Name: "Welcome", RenderMode: view.RenderModeFull, // RenderMode: view.RenderModeServer, // RenderMode: view.RenderModeClient,})Web Sockets
Simple Web Sockets api.
send.WsUpgrade(client)for { name := receive.Message(client) send.Message(client, "Hello " + name)}Server Sent Events
Simple Server Sent Events api.
send.SseUpgrade(client)for { send.Message(client, "Hello.") time.Sleep(time.Second)}