In recent years, the concept of microservices has gained immense popularity in the world of software development. Now, there is a new kid on the block that’s catching up fast—micro-frontend. It’s a technique that allows you to create and deploy ...

Since I’m working on the 2.0 version of my product’s UI (to be released in May), I’m publishing some technical tricks I learned from migrating my application from Vuejs 2 to Vuejs 3. The current version of the Inspector frontend ...

TL;DR–Explore the example repository This is the typical structure I use for my medium-sized Node backends. For small backends, I’d probably just put everything in one file and I might not bother with build tooling. Let’s start in the package.json. ...

In a microservices architecture, it’s common to have multiple services that need access to sensitive information, such as API keys, passwords, or certificates. Storing this sensitive information in code or configuration files is not secure because it’s easy for attackers ...

SaaS applications are the new normal nowadays, and software providers are looking to transform their applications into a Software As a Service application. For this, the only solution is to build a multi-tenant architecture SaaS application. Have you ever wondered ...