Codeminer42's Engineering Blog
JavaScript

Creating a preview mode in a Vuex app with dependency injection
In this article, I will talk about how to use dependency injection (DI) in a Typescript Vue app with Awilix. Before I go ahead and just talk about how to…
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…