awesome-repositories.com
Blog
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoAcerca deCómo clasificamosPrensaServidor MCP
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 repositorios

Awesome GitHub RepositoriesRouter Initializers

Configuration utilities for setting up application routing.

Distinguishing note: Focuses on the bootstrap phase of router setup.

Explore 3 awesome GitHub repositories matching web development · Router Initializers. Refine with filters or upvote what's useful.

Awesome Router Initializers GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • dioxuslabs/dioxusAvatar de DioxusLabs

    DioxusLabs/dioxus

    36,400Ver en GitHub↗

    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

    Initializes the application router to handle URL parsing and dynamic component rendering.

    Rustandroidcssdesktop
    Ver en GitHub↗36,400
  • vuejs/vue-routerAvatar de vuejs

    vuejs/vue-router

    18,898Ver en GitHub↗

    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

    Provides mechanisms to retrieve current route information and the router instance during component setup.

    JavaScript
    Ver en GitHub↗18,898
  • vuejs/routerAvatar de vuejs

    vuejs/router

    4,638Ver en GitHub↗

    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.

    Provides utilities for components to access the current route state and router instance.

    TypeScriptvuevue-router
    Ver en GitHub↗4,638
  1. Home
  2. Web Development
  3. Router Initializers

Explorar subetiquetas

  • Router State AccessUtilities for accessing current route information and the router instance within application components. **Distinct from Router Initializers:** Focuses on accessing live routing state during component lifecycle, whereas Router Initializers focus on the bootstrap phase.