Codeminer42's Engineering Blog
JavaScript

Making a Full-Stack App with Vue, Vite and Express that supports Hot Reload
Introduction With each passing day, web applications are becoming more and more reactive. JavaScript front-end frameworks are designed for this particular purpose. However, it is common for applications that use…
Dependency injection in React with some Context
Dependency injection is a technique used to remove interdependencies between two components of an application, but for some reason, it's not commonly used in React applications. In this article we're…
Symmetric Encryption in JavaScript for PII
Disclaimer While this article provides an overview of symmetric encryption and its implementation using standard JavaScript libraries, it should not be considered a substitute for a thorough security review by…
Using Mapbox to plan a city: a use case
We all know how maps are important. They are always there. Maps, since thousands of years ago, have been an essential way of extracting information. We can cross oceans from…
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…