awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 रिपॉजिटरी

Awesome GitHub RepositoriesController Frameworks

Systems for mapping HTTP requests to application logic, managing request-response cycles, and handling session state.

Distinguishing note: Focuses on the architectural management of web controllers, distinct from low-level routing or middleware.

Explore 5 awesome GitHub repositories matching web development · Controller Frameworks. Refine with filters or upvote what's useful.

Awesome Controller Frameworks GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • symfony/symfonysymfony का अवतार

    symfony/symfony

    31,073GitHub पर देखें↗

    Symfony is a full-stack web framework designed for building scalable and maintainable server-side applications. It provides a comprehensive collection of decoupled components that form a foundational architecture, centered on a robust dependency injection container and a configuration-driven routing engine. By organizing code into modular services, the framework ensures that application components remain testable and loosely coupled throughout the development lifecycle. The framework distinguishes itself through an event-driven kernel architecture that allows developers to intercept and modif

    Symfony includes controller management tools to handle incoming HTTP requests, map URLs to methods, manage sessions, render templates, and return response types.

    PHPbundleframeworkhacktoberfest
    GitHub पर देखें↗31,073
  • lit/litlit का अवतार

    lit/lit

    21,679GitHub पर देखें↗

    Lit is a library for building lightweight, interoperable web components. It provides a base class that leverages native browser APIs to encapsulate state, logic, and styles, allowing developers to create custom elements that function consistently across any modern web project. The framework distinguishes itself through a reactive property system that automatically triggers efficient, batched DOM updates. By utilizing tagged template literals, it defines declarative UI structures that are compiled into optimized update instructions. Its architecture emphasizes modularity through a reactive con

    Converts reactive state controllers into hooks to share logic and behavior between web components and other application frameworks.

    TypeScripthtml-templateslitlit-element
    GitHub पर देखें↗21,679
  • geekyants/vue-native-coreGeekyAnts का अवतार

    GeekyAnts/vue-native-core

    8,281GitHub पर देखें↗

    Vue Native is a framework that compiles Vue.js single-file components into React Native primitives, enabling developers to build native iOS and Android applications using Vue syntax. At its core, it provides a build-time compiler that transforms Vue components into React components, while hooking Vue's dependency-tracking reactivity system into React's component lifecycle to trigger re-renders when observed data changes. The framework wraps React Native's native module bridge so Vue components can access device APIs through Vue's reactivity system, and maps Vue's component syntax to React Nat

    Hooks Vue's dependency-tracking reactivity system into React's component lifecycle to trigger re-renders.

    JavaScriptandroidframeworkios
    GitHub पर देखें↗8,281
  • symfony/translationsymfony का अवतार

    symfony/translation

    6,607GitHub पर देखें↗

    Symfony Translation is a PHP library and framework component for internationalizing applications. It provides a complete system for managing message catalogs, handling locale-aware string translation, and formatting messages using ICU MessageFormat syntax to support pluralization, gender, and conditional selection. The component organizes translatable strings into named domains, supports key-based lookup that decouples source text from localized versions, and offers deferred rendering through translatable objects that store parameters and render only when output is needed. The library disting

    Allows controllers to receive only needed helpers via injection rather than extending a base class.

    PHPcomponentphpsymfony
    GitHub पर देखें↗6,607
  • vuejs/vue-apollovuejs का अवतार

    vuejs/vue-apollo

    6,041GitHub पर देखें↗

    Vue Apollo is a GraphQL client library for Vue.js that integrates Apollo GraphQL queries and mutations into Vue components with reactive data binding. It provides a reactive data layer that automatically updates Vue component state when GraphQL query results change, and supports server-side rendering by prefetching queries during SSR to deliver fully populated HTML on initial page load. The library allows GraphQL queries and mutations to be declared directly inside Vue component options using the apollo property, keeping data dependencies co-located with the UI. It wraps Apollo Client's nor

    Bridges Apollo Client's normalized cache with Vue's reactivity system for automatic component re-renders on cache changes.

    TypeScript
    GitHub पर देखें↗6,041
  1. Home
  2. Web Development
  3. Controller Frameworks

सब-टैग एक्सप्लोर करें

  • Framework-Decoupled ControllersInjects only required helper methods into a controller instead of extending a base class, improving testability. **Distinct from Controller Frameworks:** Distinct from Controller Frameworks: focuses on decoupling controllers from framework base classes, not general request mapping.
  • Reactive Controller Bridges1 सब-टैगMechanisms for converting reactive state controllers into hooks for cross-framework logic sharing. **Distinct from Controller Frameworks:** Distinct from general Controller Frameworks: focuses on bridging reactive state logic between web components and other frameworks.