echo-cookie-session-demo

command module
v0.0.0-...-b20b3fc Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 26, 2023 License: MIT Imports: 4 Imported by: 0

README ¶

Go/Echo+</>Templ: Demo App to use session authentication (with middleware) and centralized HTTP error handling with the Echo framework, use of Templ Template language and frontend with HTMx technology

A full stack application using Golang's Echo framework. Requests to the backend are improved in their "aesthetic" aspect with the use </>htmx (hypermedia only).

Explanation

Demo application to use session authentication (with middleware) and centralized HTTP error handling with the Echo framework.


[!NOTE] In this application, instead of using the html/template package (gofiber/template/html, specifically), we use the a-h/templ library. This amazing library implements a templating language (very similar to JSX) that compiles to Go code. Templ will allow us to write code almost identical to Go (with expressions, control flow, if/else, for loops, etc.) and have autocompletion thanks to strong typing. This means that errors appear at compile time and any calls to these templates (which are compiled as Go functions) from the handlers side will always require the correct data, minimizing errors and thus increasing the security and speed of our coding.

On the other hand, we use Golang's Echo web framework, which as stated on its website is a "High performance, extensible, minimalist Go web framework".

The use of </>htmx allows behavior similar to that of a SPA, without page reloads when switching from one route to another or when making requests (via AJAX) to the backend.

The styling of the views is achieved through Tailwind CSS and DaisyUI that are obtained from their respective CDNs.


Setup:

Besides the obvious prerequisite of having Go! on your machine, you must have Air installed for hot reloading when editing code.

Start the app in development mode:

$ air # Ctrl + C to stop the application

Build for production:

$ go build -ldflags="-s -w" -o ./bin/main . # ./bin/main to run the application / Ctrl + C to stop the application

[!TIP] In order to have autocompletion and syntax highlighting in VS Code for the Teml templating language, you will have to install the templ-vscode extension (for vim/nvim install this plugin). To generate the Go code corresponding to these templates you will have to download this executable binary from Github and place it in the PATH of your system. The command:

$ templ generate --watch

[!TIP] This will allow us to monitor changes to the .templ files and compile them as we save them. Review the documentation on Templ installation and support for your IDE.


Happy coding 😀!!

Documentation ¶

The Go Gopher

There is no documentation for this package.

Directories ¶

Path Synopsis
views
errors_pages
templ: version: 0.2.476
templ: version: 0.2.476
layout
templ: version: 0.2.476
templ: version: 0.2.476
user
templ: version: 0.2.476
templ: version: 0.2.476

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL