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

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

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

58 مستودعات

Awesome GitHub RepositoriesClass-Based Architecture

Organizing application logic into class blueprints to leverage prototype inheritance.

Distinct from Class Inheritance: Covers general class-based logic and structure, whereas Class Inheritance focuses specifically on the parent-child relationship.

Explore 58 awesome GitHub repositories matching programming languages & runtimes · Class-Based Architecture. Refine with filters or upvote what's useful.

Awesome Class-Based Architecture GitHub Repositories

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

    mbeaudru/modern-js-cheatsheet

    25,637عرض على GitHub↗

    This project is a curated reference guide and cheatsheet for modern JavaScript development. It provides a collection of syntax and patterns covering ECMAScript standards, specifically focusing on contemporary language features from ES6 and later. The resource offers specialized guides on asynchronous JavaScript, functional programming patterns, and object-oriented design. It details the use of promises and async/await syntax for non-blocking operations, as well as the application of map, filter, and reduce for data transformation. The guide covers a broad range of language fundamentals, incl

    Explains the organization of application logic using classes and prototype inheritance.

    عرض على GitHub↗25,637
  • designpatternsphp/designpatternsphpالصورة الرمزية لـ DesignPatternsPHP

    DesignPatternsPHP/DesignPatternsPHP

    22,188عرض على GitHub↗

    DesignPatternsPHP is a reference collection of sample code implementations for common software design patterns using PHP 8.x. It provides a set of examples for implementing creational, structural, and behavioral patterns to organize object-oriented design. The project includes reference implementations for creational patterns that decouple systems from object instantiation, structural patterns that define how classes organize into complex components, and behavioral patterns that manage algorithms and responsibilities between objects.

    Implements specific logic by extending base classes or interfaces to create distinct object behaviors.

    PHPcode-examplesdesign-patterndesign-patterns
    عرض على GitHub↗22,188
  • briannesbitt/carbonالصورة الرمزية لـ briannesbitt

    briannesbitt/Carbon

    16,613عرض على GitHub↗

    Carbon is a date and time manipulation library for PHP that extends the native DateTime class. It provides a set of tools for calculating, formatting, and comparing dates and times using a simplified, human-readable syntax. The library utilizes a fluent interface and static factory methods to allow for chained method calls and intuitive object instantiation. It supports both mutable and immutable state options to manage how date objects are modified and returned. The toolset covers temporal data management, including time zone handling and localization-based formatting to convert date compon

    Extends the native PHP DateTime class to provide a richer set of manipulation tools.

    PHP
    عرض على GitHub↗16,613
  • karpathy/microgradالصورة الرمزية لـ karpathy

    karpathy/micrograd

    16,455عرض على GitHub↗

    micrograd is a scalar autograd engine and minimal neural network library. It implements a system for reverse-mode automatic differentiation over a dynamic graph of scalar operations to calculate gradients. The project includes a computation graph visualizer that generates representations of data flow and gradient propagation. It provides a set of tools for constructing and training multi-layer perceptrons using an API modeled after PyTorch. The library covers the fundamentals of backpropagation and neural network construction, specifically for binary classification tasks. This includes the i

    Provides high-level class abstractions to encapsulate neural network layers, weights, and biases.

    Jupyter Notebook
    عرض على GitHub↗16,455
  • languagetool-org/languagetoolالصورة الرمزية لـ languagetool-org

    languagetool-org/languagetool

    14,597عرض على GitHub↗

    LanguageTool is a multilingual grammar and style checking engine designed to detect spelling, grammar, and writing errors across multiple languages. It provides automated proofreading capabilities that can be deployed as a self-hosted server or executed as a standalone local desktop application. The project distinguishes itself through a flexible rule development framework, allowing linguistic patterns to be defined via XML or implemented as custom Java classes. It utilizes n-gram frequency modeling for confused word detection and supports neural word embeddings to improve disambiguation betw

    Allows implementation of complex validation logic by extending base Java classes for linguistic rules.

    Javagrammarnatural-languagenatural-language-processing
    عرض على GitHub↗14,597
  • codermjlee/mjrefreshالصورة الرمزية لـ CoderMJLee

    CoderMJLee/MJRefresh

    13,814عرض على GitHub↗

    MJRefresh is a scroll view interaction library and a set of reusable UI components for implementing pull-to-refresh and infinite scrolling behaviors in mobile user interfaces. It provides customizable refresh indicators and controllers that manage reload callbacks and loading states within scrollable containers. The library allows for the replacement of standard loading indicators with custom images, GIF sequences, and status labels to match specific visual branding. It includes a global configuration store to handle dynamic UI localization and the translation of refresh content across an app

    Implements a hierarchy of base classes to share core scrolling logic across custom refresh headers and footers.

    Objective-Cobjective-crefresh
    عرض على GitHub↗13,814
  • hotwired/stimulusالصورة الرمزية لـ hotwired

    hotwired/stimulus

    13,058عرض على GitHub↗

    Stimulus is a JavaScript behavior framework and client-side logic layer used to add interactive behavior to server-rendered HTML. It functions as a system of DOM component controllers that organize JavaScript logic into classes, allowing developers to enhance server-delivered markup without replacing the rendering process with a client-side framework. The framework uses data attributes to bind JavaScript classes to HTML elements and map DOM events to specific methods through document-level event delegation. It employs a lifecycle manager based on mutation observers to automatically instantiat

    Organizes interactive behavior into reusable JavaScript classes that maintain internal state.

    TypeScript
    عرض على GitHub↗13,058
  • dod-o/statistical-learning-method_codeالصورة الرمزية لـ Dod-o

    Dod-o/Statistical-Learning-Method_Code

    11,621عرض على GitHub↗

    This project is a reference collection of statistical learning algorithms built from scratch using NumPy for linear algebra and matrix operations. It serves as an educational resource for studying the mathematical foundations and inner workings of machine learning models through manual implementations. The codebase provides hand-coded implementations of both supervised and unsupervised learning. This includes classification and regression models such as support vector machines, decision trees, and Naive Bayes, as well as data clustering and pattern discovery methods like k-means and hierarchi

    Wraps individual algorithms in class structures to isolate training and prediction logic for different statistical learners.

    Pythoncodemachine-learning-algorithmsstatistical-learning-method
    عرض على GitHub↗11,621
  • xcatliu/typescript-tutorialالصورة الرمزية لـ xcatliu

    xcatliu/typescript-tutorial

    10,725عرض على GitHub↗

    This is a comprehensive tutorial for learning TypeScript, designed for JavaScript programmers who want to understand the language's type system and modern features. The resource covers TypeScript's core identity, including its structural type compatibility, compile-time type erasure, declaration file merging, and the discriminated union pattern for precise type narrowing. The tutorial distinguishes itself by providing a progressive learning path from basic JavaScript concepts to advanced TypeScript patterns. It covers generic type parameter constraints, tuple types with fixed-length positions

    Teaches class-based programming with inheritance, visibility modifiers, abstract methods, and constructor parameter properties.

    TypeScriptjavascripttutorialtypescript
    عرض على GitHub↗10,725
  • parthjadhav/tkinter-designerالصورة الرمزية لـ ParthJadhav

    ParthJadhav/Tkinter-Designer

    10,259عرض على GitHub↗

    Tkinter-Designer is a tool for converting Figma design files into executable Python source code and visual assets. It automates the transformation of visual design layouts into functional Tkinter source code to facilitate the creation of desktop application prototypes. The project converts Figma design URLs and API tokens into functional interfaces, processing individual design frames as independent views. This enables the generation of multi-screen applications with navigation logic to move between different layouts. The generated output uses a class-based architecture to organize screens,

    Organizes the generated GUI code using a class-based architecture to improve maintainability.

    Pythonautomaticcollaboratedrag-and-drop
    عرض على GitHub↗10,259
  • lyhue1991/eat_tensorflow2_in_30_daysالصورة الرمزية لـ lyhue1991

    lyhue1991/eat_tensorflow2_in_30_days

    9,933عرض على GitHub↗

    This project is a structured learning curriculum and technical reference for mastering deep learning with TensorFlow. It provides a comprehensive guide for building, training, and deploying neural networks, combining theoretical fundamentals with practical implementation examples. The repository distinguishes itself by covering the end-to-end machine learning workflow, from low-level tensor mathematics and linear algebra to the creation of complex model architectures. It includes specific guidance on developing data pipelines for diverse data types, such as images, text, and time-series seque

    Uses class structures to isolate the training and prediction logic of machine learning models.

    Pythontensorflowtensorflow-examplestensorflow-tutorial
    عرض على GitHub↗9,933
  • google-deepmind/sonnetالصورة الرمزية لـ google-deepmind

    google-deepmind/sonnet

    9,920عرض على GitHub↗

    Sonnet is a modular machine learning framework and TensorFlow neural network library designed for building composable deep learning architectures. It functions as a model orchestrator that manages parameters, state serialization, and graph exports during the training process. The framework provides a distributed training system to synchronize gradients and spread workloads across multiple GPUs or hardware devices. It enables the design of reusable research components through high-level abstractions and subclassing. The library covers neural network architecture design through sequential laye

    Provides a class-based system for encapsulating network logic and automating the tracking of internal weights and biases.

    Pythonartificial-intelligencedeep-learningmachine-learning
    عرض على GitHub↗9,920
  • rss-bridge/rss-bridgeالصورة الرمزية لـ RSS-Bridge

    RSS-Bridge/rss-bridge

    8,716عرض على GitHub↗

    RSS-Bridge is a self-hosted feed generator and proxy that transforms website content from sources without native feeds into standardized Atom, RSS, or JSON web feeds. It functions as a web scraping system that extracts data from pages using CSS selectors and XPath to create structured data streams for feed readers. The project is designed for extensibility, allowing for the development of custom bridges to fetch and parse data from new target websites. It includes capabilities for feed aggregation and filtering, enabling the merging of multiple data sources into a single feed and the removal

    Implements a class-based bridge pattern to decouple the feed generation logic from the specific parsing requirements of different websites.

    PHPatom-feedhacktoberfestjson-feed
    عرض على GitHub↗8,716
  • junit-team/junit4الصورة الرمزية لـ junit-team

    junit-team/junit4

    8,525عرض على GitHub↗

    JUnit 4 is a unit testing framework for Java that provides a structured approach to writing and running automated tests. At its core, it uses annotation-based test discovery to automatically identify test methods, and a pluggable runner architecture that controls how test classes are discovered, instantiated, and executed. The framework builds test execution around a chain of Statement objects, each wrapping the next to layer behaviors such as timeouts and retries, and uses Java reflection to dynamically invoke test methods and access private fields for setup and teardown operations. The fram

    Wraps test execution with reusable Rule objects that intercept lifecycle events for setup, cleanup, or behavior modification.

    Java
    عرض على GitHub↗8,525
  • graphql-python/grapheneالصورة الرمزية لـ graphql-python

    graphql-python/graphene

    8,238عرض على GitHub↗

    Graphene is a library and framework for building type-safe GraphQL APIs and schemas using Python objects and resolvers. It provides a system for mapping internal data models to typed GraphQL schemas, enabling the creation of servers that process queries and execute resolvers to return structured data. The project includes a full implementation of the Relay specification, providing standardized patterns for global object identification and cursor-based pagination. It utilizes a class-based approach to schema definition and supports interface-based type inheritance. The framework covers a broa

    Uses Python classes to define the structure of GraphQL object types and fields.

    Python
    عرض على GitHub↗8,238
  • 19majkel94/type-graphqlالصورة الرمزية لـ 19majkel94

    19majkel94/type-graphql

    8,088عرض على GitHub↗

    Type-graphql is a framework for building GraphQL servers that uses TypeScript classes as the single source of truth for schema definitions and types. It provides a schema generator and a resolver framework that allows developers to define queries and mutations using class-based controllers and decorators. The project focuses on a schema-first approach where TypeScript classes and metadata reflection are used to automatically derive GraphQL schemas. It incorporates a dependency injection container to manage the instantiation and lifecycle of resolver classes. The system includes a middleware

    Maps GraphQL queries and mutations to specific TypeScript class methods using metadata reflection.

    TypeScript
    عرض على GitHub↗8,088
  • michallytek/type-graphqlالصورة الرمزية لـ MichalLytek

    MichalLytek/type-graphql

    8,088عرض على GitHub↗

    Type-graphql is a toolkit and framework for creating type-safe GraphQL APIs. It functions as a schema generator and resolver library that uses TypeScript classes and decorators as the primary source of truth for data structures and query logic. The project enables the definition of GraphQL schemas and resolvers through typed classes rather than manual schema definition language. This approach ensures that TypeScript types automatically align with the GraphQL schema to prevent runtime errors. The framework provides capabilities for API implementation, including input data validation and acces

    Maps GraphQL queries and mutations to specific methods within controller classes using metadata reflection.

    TypeScript
    عرض على GitHub↗8,088
  • munificent/wrenالصورة الرمزية لـ munificent

    munificent/wren

    8,039عرض على GitHub↗

    Wren is a bytecode-compiled, class-based scripting language designed as an embeddable programming language. It provides a lightweight runtime and interface for executing dynamic scripts directly within host software applications. The engine utilizes a single-pass compiler to transform source code into compact bytecode and a virtual machine to process those instructions. It supports concurrent task execution through a system of lightweight fibers and coroutines. The language implements a class-based object model with dynamic message dispatch for organizing code into reusable components. It al

    Implements a class-based object model to organize data and behavior into hierarchical blueprints.

    Wren
    عرض على GitHub↗8,039
  • yelp/elastalertالصورة الرمزية لـ Yelp

    Yelp/elastalert

    7,994عرض على GitHub↗

    ElastAlert is an alerting framework and query monitor for Elasticsearch. It functions as a real-time log monitoring tool and event notification engine that scans indices for specific patterns to trigger automated alerts when predefined rules are matched. The system distinguishes itself through specialized detection logic, including event spike detection, event frequency monitoring, field change tracking, and the identification of new terms within data fields. It handles notification noise via stateful alert suppression to prevent redundant messages and provides time-windowed aggregation to gr

    Allows developers to define custom alerting logic by extending a base class that handles the query lifecycle.

    Python
    عرض على GitHub↗7,994
  • teivah/100-go-mistakesالصورة الرمزية لـ teivah

    teivah/100-go-mistakes

    7,915عرض على GitHub↗

    100 Go Mistakes is a reference book and code review companion that catalogues frequent Go programming anti-patterns and provides corrected implementations for each one. It covers a wide range of common pitfalls, from range loop variable capture and interface nil handling to error wrapping and map iteration randomization, helping developers recognize and avoid these issues in their own code. The project distinguishes itself by offering a structured, example-driven approach to learning idiomatic Go. It covers core design decisions such as when to use pointer versus value receivers, how to apply

    Provides guidance on returning concrete types instead of interfaces to reduce coupling.

    Gobookchinesedocumentation
    عرض على GitHub↗7,915
السابق123التالي
  1. Home
  2. Programming Languages & Runtimes
  3. Class-Based Architecture

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

  • Base-Class Feature Inheritance2 وسوم فرعيةThe use of a hierarchy of pre-implemented base classes to share common logic across mobile components. **Distinct from Class-Based Architecture:** Focuses on the practical application of base classes for feature sharing in an app framework, rather than general architectural blueprints.
  • Bridge PatternsImplementations of the bridge design pattern to decouple data fetching abstractions from site-specific parsing logic. **Distinct from Class-Based Architecture:** Specifically applies the bridge pattern to web scraping and feed generation rather than general application architecture.
  • Class-Based Schema Mapping4 وسوم فرعيةMapping API structures directly to programming language classes. **Distinct from Class-Based Architecture:** Specific to mapping GraphQL types to Python classes, not general architectural blueprints.
  • Component Extension SystemsFrameworks that allow extending base classes to create custom UI components and validation rules. **Distinct from Class-Based Architecture:** More specific than general class-based architecture, focusing on the extension of a library's component set.
  • Concrete Implementations3 وسوم فرعيةSpecific class implementations that realize abstract behaviors or interface contracts. **Distinct from Class-Based Architecture:** Focuses on the final concrete class specialization rather than the general class-based architecture blueprints.
  • Flat CSS Class SelectorsUses only single-class selectors with lowercase letters, digits, and dashes to avoid specificity wars and simplify overrides. **Distinct from Class-Based Architecture:** Distinct from Class-Based Architecture: focuses on flat CSS class selectors for styling, not general class-based programming logic.
  • Interface Logic Overrides1 وسم فرعيCustomization points that allow overriding core class methods to modify UI rendering or behavior. **Distinct from Class-Based Architecture:** Focuses on runtime behavioral overrides of a library's core classes rather than general architectural blueprints.
  • Library ExtensionsCustom classes that wrap core language objects to provide extended functionality and helper methods. **Distinct from Class-Based Architecture:** Focuses on extending existing language types via wrappers rather than general application structure.
  • Model EncapsulationsUsing class structures to isolate the training and prediction logic of machine learning models. **Distinct from Class-Based Architecture:** Specific to wrapping ML model logic, distinct from general prototype inheritance or state encapsulation.
  • Neural Network Module AbstractionsHigh-level class abstractions for encapsulating neural network layers and their associated parameters. **Distinct from Class-Based Architecture:** Specifically applies class-based architecture to neural network module definition and parameter tracking, rather than general application logic.
  • Physics Plugin ArchitectureExtensible system using class inheritance to implement custom potentials and computations. **Distinct from Class-Based Architecture:** Distinct from general class-based architecture: specifically designed for hot-swapping physics models in a simulation engine.
  • Platform Extension FrameworksArchitectural patterns for extending platform capabilities using base class inheritance and decorators. **Distinct from Class-Based Architecture:** Focuses on the extensibility framework for adding video sources, unlike general class-based architectural blueprints.
  • Renderer ExtensionsThe ability to extend a base renderer class to implement new output formats or override element handling. **Distinct from Class-Based Architecture:** Distinct from Class-Based Architecture: focuses on extending specific renderer functionality rather than general application organization.
  • Rule Logic Extensions4 وسوم فرعيةMechanism for developers to implement custom alerting logic by extending base rule classes. **Distinct from Class-Based Architecture:** Distinct from Class-Based Architecture: focuses specifically on extending the alerting rule lifecycle rather than general app structure.
  • Schema Definitions2 وسوم فرعيةOrganizing data validation and mapping rules into reusable class structures. **Distinct from Class-Based Architecture:** Focuses on schema-specific class definitions rather than general application architectural patterns.