24 repositorios
Architectural patterns for composing applications with hierarchical navigation.
Distinguishing note: Focuses on routing structure rather than general application composition.
Explore 24 awesome GitHub repositories matching web development · Nested Routing. Refine with filters or upvote what's useful.
Vue es un framework de JavaScript progresivo basado en componentes diseñado para construir interfaces de usuario reactivas y aplicaciones de una sola página. Se centra en un sistema de plantillas declarativo que transforma HTML en funciones de renderizado eficientes, permitiendo a los desarrolladores organizar interfaces complejas en unidades aisladas y reutilizables que se sincronizan automáticamente con el estado de la aplicación. El framework se distingue por un sistema de reactividad de seguimiento de dependencias que monitorea el acceso a los datos durante el renderizado para activar actualizaciones precisas. Proporciona una arquitectura flexible que admite tanto la adopción incremental como una biblioteca ligera como el desarrollo de aplicaciones a gran escala. Los desarrolladores pueden aprovechar un modelo de extensibilidad basado en plugins robusto para inyectar lógica global, mientras que la reconciliación del DOM virtual del framework asegura actualizaciones de interfaz eficientes calculando mutaciones mínimas. Más allá de sus capacidades de renderizado principales, el proyecto incluye un conjunto completo de herramientas para gestionar el estado de la aplicación, enrutamiento basado en URL y renderizado del lado del servidor. Ofrece un amplio soporte para la composición de componentes, distribución de contenido y gestión de animaciones, junto con medidas de seguridad integradas como el escape automático de contenido para prevenir vulnerabilidades comunes. El framework se distribuye con declaraciones de tipo oficiales para admitir el análisis estático y puede instalarse a través de gestores de paquetes estándar o integrarse directamente en entornos de navegador a través de etiquetas de script.
Organizes complex application structures through hierarchical route definitions for nested navigation.
React Router is a client-side routing library for React that maps browser URLs to specific user interface components. It functions as a declarative navigation framework used to manage application state and navigation paths within single-page applications. The library handles the extraction of dynamic URL parameters to render content based on the current browser path. It synchronizes application state with the browser URL, enabling the use of the back and forward buttons and allowing for bookmarking. The framework covers declarative UI navigation and browser history management. It employs URL
Enables hierarchical navigation by rendering child components within parent layouts based on matched URL segments.
Preact is a lightweight declarative user interface library designed for building high-performance web applications. It utilizes a component-based architecture where interfaces are defined as functional or class-based units, relying on a virtual DOM to perform efficient state reconciliation and updates. By prioritizing a minimal footprint, the library enables developers to create modular, predictable, and testable user interfaces while maintaining compatibility with standard browser APIs. The library distinguishes itself through a reactive state engine that leverages signals to track dependenc
Composes complex applications by nesting routers and delegating sub-path matching.
Dioxus is a cross-platform development framework designed for building native desktop, mobile, and web applications from a single codebase. It utilizes a declarative component model and macro-powered syntax to define reusable interface elements, which are then rendered as native widgets or web elements. At its core, the framework employs a signal-based reactivity system that tracks state dependencies to trigger granular updates, ensuring efficient interface performance without re-rendering the entire application tree. The framework distinguishes itself through a unified full-stack runtime tha
Organizes complex application structures by nesting route paths and grouping related views.
React-admin is a framework for building data-driven administrative interfaces that connect to REST or GraphQL backends. It provides a comprehensive suite of tools for managing the full lifecycle of administrative applications, including resource-oriented routing, declarative form scaffolding, and context-driven state management. By utilizing a modular adapter-based architecture, the framework abstracts backend communication, allowing developers to build consistent CRUD interfaces that handle data fetching, authentication, and synchronization automatically. The project distinguishes itself thr
Defines sub-routes within existing resource paths to organize related data views or hierarchical content structures.
Leptos is a full-stack Rust web framework designed for building reactive applications that share logic and types between the server and the browser. It provides a comprehensive toolkit for developing web interfaces where specific DOM nodes update automatically in response to changes in underlying reactive signals, rather than re-rendering entire component trees. The framework distinguishes itself through a fine-grained reactivity model that tracks dependencies at the individual data point level. It utilizes compile-time template transformation to convert declarative HTML-like syntax into opti
Supports hierarchical navigation by nesting route definitions to display child views within parent layouts.
Vue.js Client-Side Router is a routing library that maps browser URLs to Vue.js components to enable the creation of single-page applications. It functions as a navigation engine that manages browser history and URL state to allow page transitions without full browser reloads. The system utilizes a nested route manager to render hierarchical views that match complex URL structures. It includes navigation guard middleware to intercept, validate, or redirect route transitions before components are rendered. A client-side history handler synchronizes application state with the browser URL using
Supports hierarchical navigation by rendering child components into nested outlets based on URL path segments.
Umi is a comprehensive React application framework and enterprise frontend toolchain. It provides a plugin-based build system and a configuration-driven routing engine to integrate routing, build tooling, and deployment within a single dependency. The project serves as a micro-frontend orchestrator, coordinating multiple independent frontend applications into a single interface with shared data flow. Its extensible architecture allows for the customization of every stage of the application development lifecycle through a system of plugins. The framework covers a broad range of enterprise cap
Implements a system for defining hierarchical, nested, and dynamic URL structures to optimize application navigation.
React is a JavaScript library for building user interfaces through the composition of modular, self-contained components. It employs a declarative programming model where developers describe the desired visual state, and the library automatically manages the underlying document updates and state synchronization. By utilizing a virtual representation of the document, it calculates and applies minimal changes to the browser, ensuring efficient rendering even in complex applications. The library distinguishes itself through a sophisticated scheduling system that manages rendering work in increme
Maps browser URLs to hierarchical views and manages navigation, parameters, and data prefetching.
Este proyecto es una base preconfigurada para aplicaciones web, proporcionando un código base estructurado y herramientas de compilación para iniciar nuevos proyectos frontend. Sirve como un boilerplate que integra React para la interfaz de usuario, Redux para la gestión del estado y React-Router para la navegación. La arquitectura se distingue por su uso de definiciones de rutas anidadas para manejar la navegación jerárquica y un sistema para la inyección dinámica de reducers, lo que permite añadir lógica de gestión de estado al store en tiempo de ejecución a medida que se cargan módulos específicos. El toolkit cubre una amplia gama de capacidades frontend, incluyendo enrutamiento del lado del cliente, optimización de bundles mediante carga perezosa (lazy loading) de rutas y un pipeline de compilación que admite el bundling de activos estáticos. También incluye un ejecutor de pruebas unitarias integrado para validar la lógica de la aplicación y hot module replacement para un flujo de trabajo de desarrollo que refleja los cambios de código sin una recarga completa del navegador. Se proporciona una utilidad de inicialización de proyectos para realizar el scaffolding de la estructura de directorios inicial y la configuración del entorno.
Uses architectural patterns for composing the application via hierarchical and nested navigation paths.
Wouter is a minimalist client-side routing library for React and Preact. It uses a hook-based system to map URL paths to components, managing navigation and URL state without requiring a mandatory provider. The library is designed for cross-ecosystem compatibility between React and Preact and supports server-side rendering by accepting initial paths and search strings during markup generation. It includes a URL parameter manager for extracting dynamic path segments and query strings from the browser address bar. Capabilities include hierarchical nested routing, programmatic navigation manage
Supports hierarchical route structures where child components match paths relative to a parent routing context.
Reach Router is a client-side routing library for React applications that maps URL patterns to components without full page reloads. It defines navigation rules and component rendering through declarative route configuration, using nested React component trees instead of separate configuration files. The library supports parent-child route hierarchies so shared UI elements persist across page transitions, and provides a declarative Navigate component that triggers URL changes and view updates when rendered. It extracts dynamic segments from URL patterns and passes them as props to matched rou
Composes parent and child routes using React component trees for shared layouts across navigation.
Waku is a minimal React framework built around React Server Components. It renders components exclusively on the server for data fetching and server-side logic, then hydrates client components in the browser for interactivity. The framework supports hybrid rendering, mixing static prerendering at build time with dynamic per-request rendering within a single application, and allows independently loading slice components that can be static or dynamic. The framework distinguishes itself through its file-based routing system that defines pages, layouts, and API endpoints by placing files in a dir
Defines pages with multiple variable path segments, each captured as a separate prop.
Solid Start is a full-stack web framework built on Solid.js that combines file-based routing, multi-mode rendering, and client hydration into a single application framework. It enables developers to build complete web applications with server-rendered pages, client-side interactivity, and API endpoints from one codebase, while supporting deployment across multiple hosting platforms through a system of platform-specific adapters. The framework distinguishes itself through its multi-mode rendering engine, which allows per-page selection between client-side rendering, server-side rendering, stat
Provides isomorphic nested routing that renders parent-child hierarchies identically on client and server.
Director is a routing library for JavaScript that handles URL and command-line pattern matching across client-side, server-side, and CLI environments. It provides a unified approach to defining routes as nested object literals, where each key maps to a URL segment and its handler, supporting both hash fragment monitoring and the HTML5 History API for browser navigation without page reloads. The library distinguishes itself through its ability to operate in multiple contexts with a single routing paradigm. It supports asynchronous handler queue execution for sequential tasks like authenticatio
Defines routes as nested JavaScript object literals where each key maps to a URL segment and its handler.
Este proyecto es un tutorial de enrutamiento del lado del cliente y recurso de aprendizaje para integrar el enrutamiento en aplicaciones web React. Proporciona una serie de aplicaciones incrementales y ejecutables, además de guías para enseñar a los usuarios cómo mapear URLs a componentes y gestionar el estado de navegación dentro de un navegador. El recurso incluye guías de implementación práctica para configurar rutas anidadas, capturar parámetros de URL dinámicos y manejar rutas de índice. También proporciona ejemplos de renderizado del lado del servidor (SSR) para demostrar cómo generar HTML en el servidor para mejorar las velocidades de carga inicial y la optimización para motores de búsqueda (SEO). El tutorial cubre capacidades más amplias, incluyendo la navegación en aplicaciones de una sola página (SPA), layouts de UI jerárquicos y el mapeo de rutas del navegador a componentes de UI específicos.
Implements hierarchical routing to render child components inside parent layouts.
koa2-note es un proyecto centrado en el desarrollo de servidores web con Koa2 y programación asíncrona en Node.js. Proporciona un framework para construir servidores web y APIs utilizando un pipeline de middleware asíncrono para manejar ciclos de solicitud y respuesta. El proyecto enfatiza una arquitectura de backend en capas que desacopla el enrutamiento, los servicios de negocio y los modelos de datos. Se distingue por la integración de bases de datos relacionales para persistir sesiones de usuario y datos de la aplicación, junto con un proceso de compilación que incluye la transformación de JSX a JavaScript para los activos del frontend. La superficie de capacidades cubre el diseño de APIs de backend, incluyendo enrutamiento RESTful y análisis de datos de solicitud, así como renderizado del lado del servidor con motores de plantillas. También incluye soporte para carga de archivos asíncrona mediante análisis de streams multipart, gestión de sesiones basada en cookies y la implementación de JSONP para solicitudes entre dominios. El repositorio sirve como recurso educativo con tutoriales estructurados y ejemplos para aprender la implementación del framework Koa y la arquitectura de servidores.
Implements nested routing to structure the application hierarchy using sub-routers.
koa-router es un middleware de enrutamiento para aplicaciones Koa que mapea las solicitudes HTTP entrantes a funciones de controlador específicas basadas en patrones de URL y métodos HTTP. Proporciona la base para organizar endpoints web y desarrollar APIs REST vinculando rutas de solicitud a sus acciones de controlador correspondientes. El proyecto permite la organización de endpoints complejos mediante el anidamiento recursivo de routers, permitiendo que múltiples instancias de router se monten como middleware para crear jerarquías de rutas lógicas. Admite la generación dinámica de URL mediante el mapeo de rutas con nombre, lo que permite la creación de cadenas de URL utilizando identificadores en lugar de rutas codificadas de forma rígida. El router incluye capacidades para extraer y validar parámetros de URL con nombre, coincidencia de rutas basada en expresiones regulares y la gestión de tuberías de middleware. También maneja restricciones de métodos, como responder a solicitudes OPTIONS y gestionar redirecciones.
Allows the structuring of complex endpoints into logical hierarchies via nested router instances.
Vue.js Client-Side Router es una biblioteca de enrutamiento para Vue.js que sincroniza la URL del navegador con el estado de la aplicación para permitir la navegación en aplicaciones de una sola página (SPA). Funciona como un mapeador de URL a componente, renderizando componentes específicos basados en la ruta de la URL actual y patrones de ruta dinámicos. El proyecto sirve como un gestor de historial del navegador que controla cómo las rutas internas se mapean a la URL del navegador utilizando varias estrategias de historial. También proporciona un framework de guardias de navegación para ejecutar lógica y control de acceso durante las transiciones de ruta. La biblioteca cubre la gestión de rutas dinámicas, manipulación programática de URL y el análisis de parámetros de consulta. Admite la definición de rutas de aplicación a través de rutas estáticas y dinámicas para controlar el movimiento entre diferentes vistas.
Supports nested route definitions to enable recursive rendering and layout-driven view nesting.
Conductor is a view-based framework for Android applications that provides a system for orchestrating UI components through lifecycle controllers, navigation routers, and UI coordination. It focuses on managing how views are loaded and unloaded to optimize memory and state. The framework features a routing system for managing screen transitions and history stacks, allowing for the creation of hierarchical layouts such as master-detail views by nesting navigation flows. It also includes an interface for implementing custom animations and visual effects during view switches. Its broader capabi
Uses architectural patterns to compose applications with hierarchical, nested navigation routing.