Code Sharing between Microservices

Shared Library

Code Sharing Option Chosen This is documenting code sharing by the method of publishing a custom NPM package. To do this I will take the code that should be shared, put it in its own folder and publish it to the NPM registry. Advantages of this Overview of steps Steps Create an Organization in the …

Read more

Kubernetes Cheatsheet

Get Commands This request would be useful if you need to make a cross namespace request. For example. If you’re making a request within the default namespace in your ‘Client’ service running Next JS and you need to reach out to your auth service. Rather than reaching out directly to your auth service, you make …

Read more

Microservices Overview

Lego Metaphor for Microservices

What Are Microservices? Microservices are a software development approach where a large, complex application is broken down into a collection of small, independently deployable services. Each service is responsible for a specific business capability and communicates with other services through APIs. This approach aims to improve scalability, maintainability, and flexibility of large and complex applications …

Read more