Skip to content

Sponsor: Do you build complex software systems? See how NServiceBus makes it easier to design, build, and manage software systems that use message queues to achieve loose coupling. Get started for free.

Learn more about Software Architecture & Design.
Join thousands of developers getting weekly updates to increase your understanding of software architecture and design concepts.


Follow @CodeOpinion

Architecture

Avoiding a Legacy Codebase. Keep it Evergreen

Nobody wants their codebase to turn into a brownfield mess legacy codebase having to use outdated technology. Here are 3 tips for keeping your codebase evergreen. YouTube Check out my YouTube channel, where I post all kinds of content accompanying my posts, including this video showing everything in this post. Understanding Stability and Advancements How do you keep your codebase Evergreen and avoid it being a legacy codebase? Let’s say you recently started a greenfield project, and you know it will be maintained over the years, adding new functionality. You don’t want it to turn into legacy or something that’s considered brownfield.… Read More »Avoiding a Legacy Codebase. Keep it Evergreen

Your Customers Don’t Care About JavaScript

Your customers do not care about the technology behind your app. What programming language, frameworks, libraries, or whatever tooling you’re using, they don’t care. They care about it providing them value and that it has certain characteristics. They want it to work. YouTube Check out my YouTube channel, where I post all kinds of content accompanying my posts, including this video showing everything in this post. Context Matters Of course, there’s nuance to this—context matters. For instance, if your customers are developers, they likely care about how the application is built. This blog/video is inspired by a wonderful tweet that illustrates this… Read More »Your Customers Don’t Care About JavaScript

Web-Queue-Worker Architecture Style for Scaling

Web-Queue-Worker is an excellent architecture pattern you can add to your toolbox. It’s just a pattern and can work with a monolith, modular monolith, microservices, or whatever. It provides many benefits for scaling by moving work into the background and if you have long-running jobs, workflows, or even recurring batch jobs. YouTube Check out my YouTube channel, where I post all kinds of content accompanying my posts, including this video showing everything in this post. Flow Here’s the flow of the Web-Queue-Worker pattern in its simplest form. We have a client make a request to our HTTP API (Web), which generates a… Read More »Web-Queue-Worker Architecture Style for Scaling