Category code

Dependency Injection in .NET Core: A Complete Guide

Introduction Dependency Injection (DI) has become a cornerstone technique in modern software development, promoting loose coupling and enhanced modularity. Particularly in .NET Core, Microsoft’s cutting-edge framework for building applications, DI plays a pivotal role in creating scalable, maintainable, and testable…

Next.js: A data fetching. Chapter 3.

In this chapter, we will focus on fetching data in two ways: Server Action and API. We also touch forms topic. Server Action Next.js defines server actions as asynchronous functions that are executed at server side. The real power of…

Next.js: A Quick Guide. Chapter 2.

In this chapter, we will focus on layouts, navigation with highlighting active link, images and rendering. Layouts Layout define how our pages will be formatted. It is shared between every page in path and sub path. It can be overridden…

Next.js: A Quick Guide. Chapter 1.

Next.js is a web development framework that makes building websites and web applications easier. It was created to simplify the process of developing React applications by providing a structure and conventions, reducing the need for developers to make many decisions…