Latest Updates

Documenting code, one commit at a time.

Establishing API Reliability: Implementing a Health Check in NestJS

In the vive-tu-mente-preview project, a foundational step in building a robust backend service is ensuring its operational status is always known. This is precisely why we've focused on configuring a base API with a dedicated health check endpoint. A health check is more than just a ping; it's a critical mechanism for monitoring application availability, especially in containerized and

Read more

Establishing Robustness: Configuring Base API and Health Checks in NestJS

In the vive-tu-mente-preview project, a foundational step in ensuring the reliability and readiness of our backend services involved configuring a robust base API and implementing a health check endpoint. This ensures that our services are not only operational but also transparent about their status, crucial for modern deployment environments.

Introduction

For any backend application,

Read more

NestJS Modularity: Learning from a Reverted TypeORM and Service Export

The SBSofiaBartoli/ecommerce-md-back project is an e-commerce backend system. We recently encountered a common challenge related to module design and dependency management when implementing features.

The Situation

During a recent development cycle for our e-commerce backend, a new feature involving user management required access to the UsersService and certain TypeORM repository

Read more