Clean Architecture (5)

Full-Stack Go App with HTMX and Alpine.js

Can you create an application that feels like it was built with React or Vue without ever leaving Go code? Almost. You'll still need a touch of JavaScript, but much less than you might expect. Read on to find out how. I’ve pondered this for…

Refactoring a PHP app in Go: Entity and Value Object

In this blog, I have posted a series of articles on how to create an app using Clean Architecture and DDD, albeit a simplified version. Now, it's time to bring these concepts to Go. Golang is considered a "light" object-oriented language since it supports concepts…

The Domain Layer - Clean Architecture & Domain-Driven Design on PHP

The fundamental part of Clean Architecture and Domain-Driven Design is the Domain layer. There all the business and applications rules are laid down and will be controlling the processing of information independently from the infrastructure and frameworks. In the last post we discussed a little…