I've just published a new tutorial: How I use HTMX with Go. It covers the patterns I use for template rendering, partial/full-page responses, redirects, errors and config settings — all while building a working app. Check it out at: www.alexedwards.net/blog/how-i-u...
Alex Edwards
@ajmedwards.bsky.social
Full-stack web developer · Author of Let's Go › http://lets-go.alexedwards.net
From JSONv2 to GreenTeaGC: a guide to Go's experimental features, how they evolve, and what's available in Go 1.26. www.alexedwards.net/blog/go-expe...
Go Experiments Explained - Alex Edwards
alexedwards.net
Choosing the right names makes your Go code clearer, more predictable, and easier to navigate — bad names do the opposite. I’ve just published a beginner-friendly guide covering naming conventions, practical tips, and examples: www.alexedwards.net/blog/go-nami...
Go Naming Conventions: A Practical Guide - Alex Edwards
alexedwards.net
It’s that time of year again! 🎁Treat yourself to some holiday Golang learning with 30% off my books Let’s Go and Let’s Go Further — offer on until Dec 1st. Both books are fully updated for the latest Go 1.25 release. lets-go.alexedwards.net lets-go-further.alexedwards.net
I’ve written a new tutorial on Go’s CrossOriginProtection middleware, explaining how it works and how you can combine it with SameSite cookies and TLS 1.3 to effectively prevent CSRF attacks. www.alexedwards.net/blog/prevent...
A modern approach to preventing CSRF in Go - Alex Edwards
alexedwards.net
Way back in 2014 I wrote a blog post "Making and using HTTP Middleware in Go", which become one of the most read things I've ever made. I decided it was time to give it a bit of love... I've modernized the examples and restructured the post and explanations to (hopefully!) improve it further.
Making and using HTTP Middleware in Go - Alex Edwards
alexedwards.net
I've just finished writing a new blog post "How to manage configuration settings in Go web applications". I talks through patterns for using flags, env vars and config files, and how to pass settings to where they are needed in your application code. www.alexedwards.net/blog/how-to-...
How to manage configuration settings in Go web applications - Alex Edwards
alexedwards.net
It's a bit overdue, but I finally updated my "which #golang router should I use?" blog post to reflect the `http.ServeMux` changes in Go 1.22. www.alexedwards.net/blog/which-g...
New blog post now out: alexedwards.net/blog/organiz... It talks about how to extend Go's http .ServeMux to support middleware 'groups' (like chi), and also a quick and simple alternative to alice for chaining middleware.
Organize your Go middleware without dependencies - Alex Edwards
alexedwards.net
Panic! …or maybe not? 🤔 I've just published a new tutorial exploring and answering the question: When is it OK to panic in Go? Give it a read at: alexedwards.net/blog/when-is... I enjoyed writing this one, and it was good to clarify and codify how I've been using panics for a long time.
New tutorial now out: Mindset tips and practical advice for structuring your #golang projects. 👉 alexedwards.net/blog/11-tips...