Tutorials

Tutorials written by Mizan

Repository Pattern in Node.js (5 Essential Tips)

Node.js API with Repository Design Pattern

When working on large-scale Node.js applications, developers often face problems maintaining clean separation between business logic and database operations. The Repository Design Pattern solves this by introducing a middle layer that isolates the data access logic, improving scalability, testability, and…

Read MoreRepository Pattern in Node.js (5 Essential Tips)

SOLID Principles in Laravel: Practical Examples & Refactoring

Overview Diagram of SOLID Principles

Why SOLID matters in Laravel? As Laravel projects grow, controllers and models can quickly become hard to change and test. SOLID principles help you keep code maintainable, flexible, and testable. In this tutorial we’ll walk through each principle with real…

Read MoreSOLID Principles in Laravel: Practical Examples & Refactoring