Codeminer42's Engineering Blog
JavaScript

Creating a development environment with docker and docker compose
Did you ever try to run code on your local machine, but it simply didn't work? And when you ask for help all you hear back is "It works on…
A practical dive into functional programming
Hi folks! I've been working on a personal project, a simple Express.js REST API. But after a while, I got stuck on a simple problem: What is the best way…
CodeTips#2: Clean code in JavaScript
INTRODUCTION INTRODUCTION I believe the comic strip above sums it well: You write clean code mainly to understand yourself in the future. Not only that, you write clean code as…
Dependency Injection With Cyclic Dependencies
Photo by Matt Seymour on Unsplash Intro Dependency injection is a very powerful technique that allows us to write code that is both more testable and decoupled. When using DI…
Empowering your systems with State Machines and XState
We know software can get complex over time, specially when it comes to state management. More often than not, we find ourselves with tricky user interface logic where things on…