awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

5 مستودعات

Awesome GitHub RepositoriesRoute Generators

Tools that generate type-safe links and paths for application routes to ensure parameter correctness.

Distinguishing note: Focuses on compile-time link generation rather than runtime request matching.

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

Awesome Route Generators GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • rwf2/rocketالصورة الرمزية لـ rwf2

    rwf2/Rocket

    25,747عرض على GitHub↗

    Rocket is a type-safe web framework designed for building server-side applications. It provides a high-performance asynchronous routing engine that maps incoming network traffic to concurrent handler functions, while managing the full lifecycle of web requests. The framework emphasizes compile-time verification, ensuring that request parameters, response types, and routing logic remain consistent throughout the development process. The framework distinguishes itself through its use of request guards, which act as a validation layer to intercept and transform incoming data into structured type

    The framework creates type-safe links for application routes at compile-time to ensure parameter correctness and automatic formatting for dynamic route values.

    Rustframeworkrocketrust
    عرض على GitHub↗25,747
  • dodyg/practical-aspnetcoreالصورة الرمزية لـ dodyg

    dodyg/practical-aspnetcore

    10,382عرض على GitHub↗

    This project is a comprehensive sample library and implementation guide for ASP.NET Core. It provides a collection of practical examples and projects that demonstrate how to build web applications, RESTful APIs, and high-performance services. The repository focuses on a variety of architectural patterns, including the development of Minimal APIs, contract-first gRPC services, and real-time communication using WebSockets and Server-Sent Events. It includes detailed implementations for user identity and security, such as token-based authentication and CSRF protection. The codebase covers a bro

    Dynamically produces URL paths based on route names to ensure consistent application linking.

    C#asp-net-coreaspnet-coreaspnetcore
    عرض على GitHub↗10,382
  • gobuffalo/buffaloالصورة الرمزية لـ gobuffalo

    gobuffalo/buffalo

    8,392عرض على GitHub↗

    Buffalo هو إطار عمل ويب MVC شامل وسلسلة أدوات متكاملة لبناء تطبيقات الويب في Go. يوفر بيئة تطوير منظمة تفصل بين النماذج والعروض ووحدات التحكم، مع دمج إطار عمل ويب مع غلاف تعيين كائني-علائقي (ORM) مخصص لإدارة مخطط قاعدة البيانات والسجلات. يتميز المشروع بمجموعة من أدوات التطوير لتمهيد هياكل المشاريع، وإدارة الأصول، وبناء حاويات جاهزة للإنتاج. يتميز بنظام توجيه متطور يدعم توليد الموارد RESTful القائم على الاتفاقيات، والاستضافة الافتراضية القائمة على النطاق، وإنشاء مساعدي المسارات للربط الداخلي المتسق. يغطي إطار العمل مجموعة واسعة من قدرات الويب الأساسية، بما في ذلك خطوط أنابيب الطلبات القائمة على البرمجيات الوسيطة (middleware)، وعرض القوالب الديناميكي، وإدارة الحالة ذات النطاق الخاص بالطلب. كما يتضمن دعماً متكاملاً لمعالجة المهام في الخلفية، وإدارة الجلسات، وإرسال البريد الإلكتروني، وإيقاف تشغيل الخادم بشكل سلس.

    Generates type-safe links and paths for named routes to ensure consistent internal linking.

    Go
    عرض على GitHub↗8,392
  • answerdotai/fasthtmlالصورة الرمزية لـ AnswerDotAI

    AnswerDotAI/fasthtml

    6,846عرض على GitHub↗

    FastHTML is a full-stack Python web framework designed for building interactive web applications using pure Python. It functions as an HTMX integration framework and a Python HTML domain-specific language, allowing developers to generate HTML structures using native objects and functions instead of external templating files. The framework is distinguished by its native support for real-time bidirectional communication via WebSockets and Server-Sent Events, enabling server-side updates to be pushed to the browser without full page reloads. It further integrates identity management through OAut

    Generates URL paths and dynamic query parameters based on route handler functions.

    Jupyter Notebook
    عرض على GitHub↗6,846
  • yeoman/generator-angularالصورة الرمزية لـ yeoman

    yeoman/generator-angular

    5,675عرض على GitHub↗

    This is a Yeoman generator that scaffolds AngularJS projects and components. It automates the setup of a complete AngularJS application with boilerplate code, directory structure, and optional dependencies, while also providing standalone sub-generators for creating controllers, directives, filters, services, views, and routes. The generator handles module registration automatically, injecting generated files into the AngularJS module system and patching route configuration files when new routes are created. It supports generating code in CoffeeScript or TypeScript through a command-line flag

    Creates a controller and view, and configures a route in the application's main script file connecting them.

    JavaScript
    عرض على GitHub↗5,675
  1. Home
  2. Web Development
  3. Route Generators

استكشف الوسوم الفرعية

  • AngularJSCreates controllers and views and configures routes in the application's main script file. **Distinct from Route Generators:** Distinct from Route Generators: focuses on AngularJS-specific route generation with controller/view creation, not general type-safe link generation.