<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Routing on AI VOID</title><link>https://ai-blog.noorshomelab.dev/tags/routing/</link><description>Recent content in Routing on AI VOID</description><generator>Hugo</generator><language>en</language><lastBuildDate>Wed, 06 May 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://ai-blog.noorshomelab.dev/tags/routing/index.xml" rel="self" type="application/rss+xml"/><item><title>Angular App Foundations: Beyond the Basics</title><link>https://ai-blog.noorshomelab.dev/angular-system-design-2026-guide/angular-foundations-beyond-basics/</link><pubDate>Sun, 15 Feb 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/angular-system-design-2026-guide/angular-foundations-beyond-basics/</guid><description>&lt;h2 id="angular-app-foundations-beyond-the-basics"&gt;Angular App Foundations: Beyond the Basics&lt;/h2&gt;
&lt;p&gt;Welcome back, future Angular architect! In Chapter 1, we got our hands dirty with setting up a basic Angular project. Now, it&amp;rsquo;s time to elevate our understanding and explore the foundational building blocks that enable us to create robust, scalable, and maintainable Angular applications. This chapter will take you beyond just &amp;ldquo;making things work&amp;rdquo; and introduce you to the core architectural patterns that underpin modern Angular development.&lt;/p&gt;</description></item><item><title>Core Concepts: Pages, Routing, and Components</title><link>https://ai-blog.noorshomelab.dev/nextjs-guide/core-concepts-pages-routing-components/</link><pubDate>Sat, 25 Oct 2025 02:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/nextjs-guide/core-concepts-pages-routing-components/</guid><description>&lt;h2 id="2-core-concepts-pages-routing-and-components"&gt;2. Core Concepts: Pages, Routing, and Components&lt;/h2&gt;
&lt;p&gt;Now that your Next.js environment is set up, let&amp;rsquo;s dive into the fundamental concepts that form the backbone of any Next.js application: Pages, the App Router, and React Components (especially Server and Client Components). Understanding these concepts is crucial for building robust and scalable applications.&lt;/p&gt;
&lt;h3 id="21-pages-and-the-app-router"&gt;2.1 Pages and the App Router&lt;/h3&gt;
&lt;p&gt;In Next.js, a &amp;ldquo;page&amp;rdquo; is a React component that is exported from a &lt;code&gt;.js&lt;/code&gt;, &lt;code&gt;.jsx&lt;/code&gt;, &lt;code&gt;.ts&lt;/code&gt;, or &lt;code&gt;.tsx&lt;/code&gt; file inside the &lt;code&gt;app&lt;/code&gt; directory. The &lt;code&gt;app&lt;/code&gt; directory uses &lt;strong&gt;file-system routing&lt;/strong&gt;, which means the structure of your files and folders dictates the URL routes of your application.&lt;/p&gt;</description></item><item><title>Chapter 3: Basic Routing &amp;amp; Data Flow in SPAs</title><link>https://ai-blog.noorshomelab.dev/react-system-design-guide/spa-routing-data-flow/</link><pubDate>Sat, 14 Feb 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/react-system-design-guide/spa-routing-data-flow/</guid><description>&lt;h2 id="introduction-to-basic-routing--data-flow-in-spas"&gt;Introduction to Basic Routing &amp;amp; Data Flow in SPAs&lt;/h2&gt;
&lt;p&gt;Welcome to Chapter 3! In the previous chapters, we laid the groundwork by understanding React&amp;rsquo;s component-based architecture and how to manage local component state. Now, it&amp;rsquo;s time to make our applications feel truly dynamic and responsive. Imagine clicking a link on a website and seeing the content change instantly, without the entire page reloading. This magic is largely thanks to client-side routing, a cornerstone of Single Page Applications (SPAs).&lt;/p&gt;</description></item><item><title>Chapter 3: Building the Foundation: Fastify, Routing, &amp;amp; Middleware</title><link>https://ai-blog.noorshomelab.dev/scalable-nodejs-api-platform/03-fastify-basics/</link><pubDate>Thu, 08 Jan 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/scalable-nodejs-api-platform/03-fastify-basics/</guid><description>&lt;h2 id="chapter-3-building-the-foundation-fastify-routing--middleware"&gt;Chapter 3: Building the Foundation: Fastify, Routing, &amp;amp; Middleware&lt;/h2&gt;
&lt;p&gt;Welcome to Chapter 3 of our comprehensive Node.js project guide! In this chapter, we&amp;rsquo;re laying the critical groundwork for our backend application by integrating the Fastify web framework. We will move beyond basic Node.js scripts to establish a robust, performant, and maintainable API server.&lt;/p&gt;
&lt;p&gt;This chapter focuses on setting up Fastify, understanding its core concepts like routing and the plugin system (Fastify&amp;rsquo;s equivalent of middleware), and implementing a foundational structure for our API. By the end of this chapter, you will have a running Fastify server capable of handling basic HTTP requests, organized into modular routes, and equipped with centralized error handling and request logging. This step is crucial for building scalable and production-ready services, as it defines how our application receives and responds to external requests.&lt;/p&gt;</description></item><item><title>Chapter 3: TanStack Router: Navigating Your Application with Type-Safety</title><link>https://ai-blog.noorshomelab.dev/tanstack-mastery-2026/03-router-basics/</link><pubDate>Wed, 07 Jan 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/tanstack-mastery-2026/03-router-basics/</guid><description>&lt;h2 id="chapter-3-tanstack-router-navigating-your-application-with-type-safety"&gt;Chapter 3: TanStack Router: Navigating Your Application with Type-Safety&lt;/h2&gt;
&lt;p&gt;Welcome to Chapter 3! In our journey through the TanStack ecosystem, we&amp;rsquo;ve laid the groundwork for building robust applications. Now, it&amp;rsquo;s time to learn how to move around within them gracefully and effectively. This chapter focuses on &lt;strong&gt;TanStack Router&lt;/strong&gt;, a powerful, type-safe routing library that champions the &amp;ldquo;URL as State&amp;rdquo; paradigm.&lt;/p&gt;
&lt;p&gt;By the end of this chapter, you&amp;rsquo;ll understand how to define routes, navigate between pages, and access route parameters with confidence, all while leveraging TypeScript for an unparalleled developer experience. We&amp;rsquo;ll start with the fundamentals and gradually build up your understanding through hands-on examples. This knowledge is crucial for creating maintainable and user-friendly single-page applications (SPAs) that feel intuitive and performant.&lt;/p&gt;</description></item><item><title>Navigation and Routing for Single-Page Applications</title><link>https://ai-blog.noorshomelab.dev/angular-mastery-enterprise-ai-2026/navigation-routing-spa/</link><pubDate>Wed, 06 May 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/angular-mastery-enterprise-ai-2026/navigation-routing-spa/</guid><description>&lt;p&gt;Have you ever noticed how some websites feel incredibly smooth, almost like a desktop application? You click a button, and the content updates instantly without a jarring page reload. This seamless experience is often the hallmark of a &lt;strong&gt;Single-Page Application (SPA)&lt;/strong&gt;. In the world of Angular, &lt;strong&gt;routing and navigation&lt;/strong&gt; are the powerful engines that drive this fluidity, transforming a collection of components into a dynamic and responsive user journey.&lt;/p&gt;
&lt;p&gt;In this chapter, we&amp;rsquo;re going to unlock the full potential of Angular&amp;rsquo;s router. We&amp;rsquo;ll start by understanding the core principles, then build up our application&amp;rsquo;s navigation piece by piece. You&amp;rsquo;ll learn how to define paths, handle dynamic data in URLs, secure your application&amp;rsquo;s sections with guards, and even leverage AI tools to help you craft robust routing configurations for large-scale enterprise applications. By the end, you&amp;rsquo;ll have a solid foundation for designing complex, maintainable navigation structures essential for any real-world Angular project.&lt;/p&gt;</description></item><item><title>Core Architectural Patterns in Angular</title><link>https://ai-blog.noorshomelab.dev/angular-system-design-2026-guide/core-angular-architectural-patterns/</link><pubDate>Sun, 15 Feb 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/angular-system-design-2026-guide/core-angular-architectural-patterns/</guid><description>&lt;h2 id="introduction-to-core-architectural-patterns"&gt;Introduction to Core Architectural Patterns&lt;/h2&gt;
&lt;p&gt;Welcome back, future Angular architect! In the previous chapters, you&amp;rsquo;ve mastered the building blocks of Angular. Now, it&amp;rsquo;s time to elevate your understanding from individual components and services to designing entire systems. Just like a master builder needs to understand different foundation types and structural frameworks, a skilled Angular developer needs to grasp core architectural patterns.&lt;/p&gt;
&lt;p&gt;This chapter will dive into the fundamental architectural choices that dictate how your Angular application performs, scales, and is maintained over its lifespan. We&amp;rsquo;ll explore various rendering strategies, how to break down monolithic applications into manageable microfrontends, establish clear state management boundaries, and design a robust routing system for large-scale applications. Understanding these patterns isn&amp;rsquo;t just about knowing what they are; it&amp;rsquo;s about understanding &lt;em&gt;why&lt;/em&gt; they exist, &lt;em&gt;when&lt;/em&gt; to use them, and &lt;em&gt;how&lt;/em&gt; they impact your project&amp;rsquo;s success.&lt;/p&gt;</description></item><item><title>Chapter 4: Routing, Navigation &amp;amp; State Management Strategies</title><link>https://ai-blog.noorshomelab.dev/angular-interview-prep-2025/routing-navigation-state-management/</link><pubDate>Tue, 23 Dec 2025 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/angular-interview-prep-2025/routing-navigation-state-management/</guid><description>&lt;h2 id="chapter-4-routing-navigation--state-management-strategies"&gt;Chapter 4: Routing, Navigation &amp;amp; State Management Strategies&lt;/h2&gt;
&lt;h3 id="introduction"&gt;Introduction&lt;/h3&gt;
&lt;p&gt;This chapter delves into the critical aspects of building robust and maintainable Angular applications: routing, navigation, and state management. These topics are fundamental to creating dynamic single-page applications (SPAs) and are frequently explored in Angular interviews, from entry-level to senior architect roles. A strong understanding here demonstrates a candidate&amp;rsquo;s ability to design scalable, performant, and user-friendly applications.&lt;/p&gt;
&lt;p&gt;We will cover core concepts, best practices, and advanced techniques, incorporating the latest features and paradigms introduced in Angular versions 13 through 21 (as of December 2025). This includes the impact of standalone components, the evolution of the Angular Router, and the transformative role of Angular Signals in modern state management. Prepare to tackle theoretical questions, practical scenarios, and design pattern discussions that are crucial for succeeding in today&amp;rsquo;s competitive tech landscape.&lt;/p&gt;</description></item><item><title>Advanced Routing and Lazy Loading at Scale</title><link>https://ai-blog.noorshomelab.dev/angular-system-design-2026-guide/advanced-routing-lazy-loading/</link><pubDate>Sun, 15 Feb 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/angular-system-design-2026-guide/advanced-routing-lazy-loading/</guid><description>&lt;h2 id="introduction-to-advanced-routing-and-lazy-loading"&gt;Introduction to Advanced Routing and Lazy Loading&lt;/h2&gt;
&lt;p&gt;Welcome to Chapter 5! In the previous chapters, you&amp;rsquo;ve laid a strong foundation in Angular development and understood the basics of building components and services. Now, we&amp;rsquo;re going to tackle one of the most crucial aspects of building large, high-performance Angular applications: &lt;strong&gt;advanced routing and lazy loading&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;Imagine you&amp;rsquo;re building a massive enterprise application, like a multi-role admin dashboard or an enterprise portal. If your application loads &lt;em&gt;everything&lt;/em&gt; upfront, users will face long initial load times, especially on slower networks or devices. This is where lazy loading comes in as a superhero! It allows your application to load only the necessary parts of your code when they are actually needed, dramatically improving startup performance and user experience.&lt;/p&gt;</description></item><item><title>Understanding Execution Pipelines and Request Routing in MCP</title><link>https://ai-blog.noorshomelab.dev/mcp-ai-tool-integration-guide/execution-pipelines-routing/</link><pubDate>Fri, 20 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/mcp-ai-tool-integration-guide/execution-pipelines-routing/</guid><description>&lt;h2 id="introduction"&gt;Introduction&lt;/h2&gt;
&lt;p&gt;Welcome back, intrepid AI architects! In our previous chapters, we&amp;rsquo;ve explored the foundational concepts of the Model Context Protocol (MCP), from its purpose as a universal language for AI tool interaction to the intricate details of defining and registering tools using robust JSON Schemas. You&amp;rsquo;ve learned how tools declare their capabilities, making them discoverable by AI agents.&lt;/p&gt;
&lt;p&gt;But how does an AI agent actually &lt;em&gt;use&lt;/em&gt; a tool once it&amp;rsquo;s discovered? How does a request travel from the agent, through the MCP system, to the correct tool, and then return a meaningful response? That&amp;rsquo;s precisely what we&amp;rsquo;ll unravel in this chapter: the fascinating world of &lt;strong&gt;Execution Pipelines&lt;/strong&gt; and &lt;strong&gt;Request Routing&lt;/strong&gt; within MCP.&lt;/p&gt;</description></item><item><title>Project 1: Building a Secure Enterprise Dashboard Core</title><link>https://ai-blog.noorshomelab.dev/angular-mastery-enterprise-ai-2026/project-enterprise-dashboard/</link><pubDate>Wed, 06 May 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/angular-mastery-enterprise-ai-2026/project-enterprise-dashboard/</guid><description>&lt;p&gt;This chapter marks an exciting milestone: we&amp;rsquo;re diving into our first major project! We&amp;rsquo;ll begin constructing the core of a secure, production-ready enterprise dashboard. Our focus will be on foundational elements like project setup, user authentication, and robust routing using modern Angular features. This initial build forms the secure skeleton upon which all future business logic will rest.&lt;/p&gt;
&lt;p&gt;Building a secure foundation isn&amp;rsquo;t just a best practice; it&amp;rsquo;s a non-negotiable requirement for enterprise applications. Compromised authentication or poorly managed access control can lead to severe data breaches, regulatory penalties, and a complete loss of user trust. This chapter teaches you how to design these critical elements correctly from the start. We&amp;rsquo;ll also explore how modern Angular practices, like standalone components and the strategic use of AI tools, streamline development, making it faster and more maintainable.&lt;/p&gt;</description></item><item><title>Chapter 8: Building the Core Pipeline: Routing and Output Generation</title><link>https://ai-blog.noorshomelab.dev/stellar-gen-guide/chapter-08-core-pipeline-routing/</link><pubDate>Mon, 02 Mar 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/stellar-gen-guide/chapter-08-core-pipeline-routing/</guid><description>&lt;h2 id="chapter-8-building-the-core-pipeline-routing-and-output-generation"&gt;Chapter 8: Building the Core Pipeline: Routing and Output Generation&lt;/h2&gt;
&lt;p&gt;Welcome to Chapter 8! In the previous chapters, we laid the groundwork for our Rust-based Static Site Generator (SSG). We&amp;rsquo;ve learned how to parse content, extract frontmatter, convert Markdown to HTML, and render that HTML using a templating engine like Tera. We even introduced the concept of component support within Markdown, preparing our system for dynamic interactions. Now, it&amp;rsquo;s time to connect these pieces and bring our SSG to life by defining how content maps to URLs and generating the final static HTML files.&lt;/p&gt;</description></item><item><title>Project: Designing a Multi-Role Admin Dashboard</title><link>https://ai-blog.noorshomelab.dev/angular-system-design-2026-guide/project-admin-dashboard/</link><pubDate>Sun, 15 Feb 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/angular-system-design-2026-guide/project-admin-dashboard/</guid><description>&lt;h2 id="introduction-architecting-your-admin-hub"&gt;Introduction: Architecting Your Admin Hub&lt;/h2&gt;
&lt;p&gt;Welcome to Chapter 14! So far, we&amp;rsquo;ve explored many fundamental and advanced concepts in Angular system design. Now, it&amp;rsquo;s time to put that knowledge into action by tackling a common, yet architecturally rich, project: designing a &lt;strong&gt;Multi-Role Admin Dashboard&lt;/strong&gt;.&lt;/p&gt;
&lt;p&gt;An admin dashboard is the control center of almost any significant application. It&amp;rsquo;s where administrators, editors, and other privileged users manage data, oversee operations, and configure settings. The &amp;ldquo;multi-role&amp;rdquo; aspect significantly elevates the design challenge, requiring careful consideration of who can see what, and who can do what. This chapter will guide you through the system design decisions crucial for building a secure, scalable, and maintainable Angular admin dashboard that gracefully handles different user roles and permissions. We&amp;rsquo;ll focus on patterns for authentication, authorization, routing, and state management, preparing you for real-world enterprise applications.&lt;/p&gt;</description></item><item><title>Chapter 28: Building a Feature-Rich E-commerce Product Page</title><link>https://ai-blog.noorshomelab.dev/react-mastery-2026/chapter-28-building-ecommerce-product-page/</link><pubDate>Sat, 31 Jan 2026 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/react-mastery-2026/chapter-28-building-ecommerce-product-page/</guid><description>&lt;h2 id="chapter-28-building-a-feature-rich-e-commerce-product-page"&gt;Chapter 28: Building a Feature-Rich E-commerce Product Page&lt;/h2&gt;
&lt;p&gt;Welcome back, aspiring React wizard! In our journey to mastery, we&amp;rsquo;ve explored many fundamental concepts, from the basics of components and props to advanced hooks, state management, and routing. Now, it&amp;rsquo;s time to bring these pieces together to construct something truly practical and visually engaging: a feature-rich e-commerce product page.&lt;/p&gt;
&lt;p&gt;This chapter is designed to be a significant hands-on project. You&amp;rsquo;ll learn how to integrate dynamic routing to display specific product details, manage complex component state for interactive elements like image carousels and quantity selectors, and simulate asynchronous data fetching to populate your page. We&amp;rsquo;ll focus on building a robust, modular, and user-friendly product display that mimics real-world e-commerce applications. This is where your understanding of React truly solidifies, as you&amp;rsquo;ll see how interconnected all the concepts we&amp;rsquo;ve covered really are. Get ready to build a substantial piece of a modern web application!&lt;/p&gt;</description></item><item><title>Chapter 2: Routing</title><link>https://ai-blog.noorshomelab.dev/agentic-design-patern-ebook/chapters/routing/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/agentic-design-patern-ebook/chapters/routing/</guid><description>&lt;h1 id="chapter-2-routing"&gt;Chapter 2: Routing&lt;/h1&gt;
&lt;h1 id="routing-pattern-overview"&gt;Routing Pattern Overview&lt;/h1&gt;
&lt;p&gt;While sequential processing via prompt chaining is a foundational technique for executing deterministic, linear workflows with language models, its applicability is limited in scenarios requiring adaptive responses. Real-world agentic systems must often arbitrate between multiple potential actions based on contingent factors, such as the state of the environment, user input, or the outcome of a preceding operation. This capacity for dynamic decision-making, which governs the flow of control to different specialized functions, tools, or sub-processes, is achieved through a mechanism known as routing.&lt;/p&gt;</description></item><item><title>Project Chapter 15.4: Integrating and Routing</title><link>https://ai-blog.noorshomelab.dev/angular-v21-mastery/chapter-15-4-integrating-and-routing/</link><pubDate>Wed, 20 Aug 2025 00:00:00 +0000</pubDate><guid>https://ai-blog.noorshomelab.dev/angular-v21-mastery/chapter-15-4-integrating-and-routing/</guid><description>&lt;h2 id="project-chapter-154-integrating-and-routing"&gt;Project Chapter 15.4: Integrating and Routing&lt;/h2&gt;
&lt;p&gt;Our User Management Application now has a &lt;code&gt;UserListComponent&lt;/code&gt; and a &lt;code&gt;UserFormComponent&lt;/code&gt;. While we&amp;rsquo;ve temporarily placed them directly in &lt;code&gt;AppComponent&lt;/code&gt;, a real-world application needs proper routing to navigate between different views. In this chapter, we&amp;rsquo;ll structure our application with routing, creating dedicated &amp;ldquo;pages&amp;rdquo; for user listing and user creation.&lt;/p&gt;
&lt;p&gt;This will utilize Angular&amp;rsquo;s router and reinforce the use of standalone components within a routed application.&lt;/p&gt;</description></item></channel></rss>