Implementing a generic Angular Material Snackbar service

When developing web applications, it is common to display feedback messages to users. Snackbar is a popular component in Angular Material that can be used to display such messages. A snackbar is a dismissible message that appears temporarily at a fixed position on the screen. In this blog, we will discuss how to create a …

Creating an endpoint for returning diagnostics and runtime information in a Nodejs application

Returning diagnostics and runtime information in a Nodejs application If you’re a little bit like me , you favor having a way of diagnosing your applications without needing to start a debug. This is particularly useful when your application is running in an environment that cant be debugged locally or where faults and issues are …

Introduction to Federated Frontends

Federated micro-frontends extend the concept of microservices to the user interface. Instead of a monolithic front-end application, the UI is decomposed into smaller, autonomous fragments, each responsible for a specific piece of functionality. These fragments, or “micro-frontends,” can be developed, deployed, and updated independently.

Multi-threading with NodeJS (Worker Threads)

Did you know you can perform multi-threading in NodeJS? NodeJS’ implementation of multi-threading is called worker_threads which functions a bit differently to other multi-threaded technologies but can be useful in certain scenarios to improve your application’s performance. Prerequisites A basic understanding of Javascript and NodeJS. What is Multi-threading? Multi-threading is the technique of running tasks …