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

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

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

42 रिपॉजिटरी

Awesome GitHub RepositoriesObserver Patterns

Design patterns for implementing publish-subscribe relationships between components.

Distinguishing note: Focuses on the structural pattern of notification rather than stream processing.

Explore 42 awesome GitHub repositories matching software engineering & architecture · Observer Patterns. Refine with filters or upvote what's useful.

Awesome Observer Patterns GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • kamranahmedse/design-patterns-for-humanskamranahmedse का अवतार

    kamranahmedse/design-patterns-for-humans

    47,878GitHub पर देखें↗

    This project is a comprehensive educational resource designed to help developers master object-oriented design and architectural patterns. It serves as a structured reference for understanding how to organize classes and objects to improve code maintainability, resolve recurring development challenges, and prepare for technical engineering assessments. The guide covers the three primary categories of design patterns: creational, structural, and behavioral. Each pattern is explained through practical examples that demonstrate how to manage object instantiation, simplify complex interfaces, and

    Implements the Observer pattern to establish subscription mechanisms for state change notifications.

    architecturecomputer-sciencedesign-patterns
    GitHub पर देखें↗47,878
  • faif/python-patternsfaif का अवतार

    faif/python-patterns

    42,801GitHub पर देखें↗

    This project is a comprehensive collection of software design patterns implemented in Python. It serves as a reference for architectural, behavioral, creational, and structural patterns to guide the organization of Python applications. The collection covers behavioral strategies for managing object communication and state, creational techniques for controlling object instantiation, and structural methods for composing classes and objects into flexible hierarchies. It also includes architectural references for system-wide structuring, such as multi-tier architectures and blackboard models. Th

    Implements the observer pattern to notify dependent objects automatically when a subject state changes.

    Pythondesign-patternsidiomspython
    GitHub पर देखें↗42,801
  • reactivex/rxjsReactiveX का अवतार

    ReactiveX/rxjs

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

    RxJS is a library for reactive programming that provides a framework for composing asynchronous and event-based programs. It utilizes observable sequences to model data flows, allowing developers to manage complex sequences of events through a declarative programming interface. The library implements the observer pattern to facilitate decoupled communication between data producers and subscribers. By employing a lazy execution model, streams remain dormant until a consumer explicitly subscribes, at which point data production is triggered. This approach enables the construction of predictable

    Implements the observer pattern to facilitate decoupled communication between data producers and subscribers.

    TypeScriptjavascriptrxjs
    GitHub पर देखें↗31,682
  • designpatternsphp/designpatternsphpDesignPatternsPHP का अवतार

    DesignPatternsPHP/DesignPatternsPHP

    22,188GitHub पर देखें↗

    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 mechanisms allowing objects to subscribe to state changes in other objects via a notification system.

    PHPcode-examplesdesign-patterndesign-patterns
    GitHub पर देखें↗22,188
  • domnikl/designpatternsphpdomnikl का अवतार

    domnikl/DesignPatternsPHP

    22,188GitHub पर देखें↗

    DesignPatternsPHP is a reference collection of software architecture patterns implemented in PHP 8. It provides a guide for object-oriented programming through sample code demonstrating creational, structural, and behavioral design patterns. The project includes reference implementations for common patterns such as factories, builders, singletons, adapters, bridges, and proxies. Each implementation is accompanied by a PHPUnit test suite to verify that the patterns behave correctly and produce expected logical outcomes. The codebase covers a broad range of architecture capabilities, including

    Implements observer patterns to maintain lists of dependents that are notified of state changes through a communication interface.

    PHP
    GitHub पर देखें↗22,188
  • gyoogle/tech-interview-for-developergyoogle का अवतार

    gyoogle/tech-interview-for-developer

    17,417GitHub पर देखें↗

    This project is a comprehensive technical interview preparation resource and computer science interview guide. It serves as an educational reference for developers to study core software engineering fundamentals and common coding patterns required for employment screenings. The repository provides detailed guides and references covering data structures and algorithms, networking and security, operating systems, and web development. It specifically focuses on the implementation and complexity analysis of sorting, searching, and graph algorithms. The material encompasses a wide breadth of comp

    Implements the Observer pattern to demonstrate one-to-many dependency and notification systems.

    Javaalgorithmcomputer-sciencecs
    GitHub पर देखें↗17,417
  • swifterswift/swifterswiftSwifterSwift का अवतार

    SwifterSwift/SwifterSwift

    15,100GitHub पर देखें↗

    SwifterSwift is a collection of Swift extensions designed to reduce boilerplate code during the development of iOS and macOS applications. It provides a library of pre-made utilities that extend the standard library and system frameworks to streamline data manipulation, system integration, and user interface optimization. The project provides specialized tools for a wide range of development tasks. This includes image processing and binary translation, text string manipulation, and complex data management for arrays, strings, and dictionaries. It also offers utilities for network request mana

    Wraps system notification observers in a disposable pattern that automatically unregisters after a single execution.

    Swift
    GitHub पर देखें↗15,100
  • max-mapper/art-of-nodemax-mapper का अवतार

    max-mapper/art-of-node

    9,873GitHub पर देखें↗

    This project is a curated educational guide and instructional resource for the Node.js runtime environment. It serves as a comprehensive introduction to core concepts, including asynchronous programming tutorials, network application primers, and guides on the module system and stream API. The material focuses on the fundamental building blocks of server-side development, specifically how to create reusable code packages and manage project dependencies via a module manifest. It provides detailed instruction on building programs that communicate over HTTP and TCP protocols to exchange data acr

    Implements the publish-subscribe pattern via the EventEmitter for component communication.

    JavaScript
    GitHub पर देखें↗9,873
  • uber/ribsuber का अवतार

    uber/RIBs

    7,923GitHub पर देखें↗

    RIBs is a mobile architecture framework that structures applications around isolated, lifecycle-managed units of business logic called RIBs. Each RIB separates routing, business logic, and construction into distinct classes through the Router-Interactor-Builder pattern, with hierarchical dependency injection scoping dependencies per node and static analysis enforcing architectural rules at build time. The framework enforces automatic disposal of Rx subscriptions scoped to interactor lifecycles, blocking compilation when subscriptions lack proper disposal to prevent memory leaks. It supports v

    Disposes Rx subscriptions automatically when a child component detaches from its parent, preventing memory leaks.

    Kotlinandroidarchitectural-patternsarchitecture
    GitHub पर देखें↗7,923
  • trello-archive/rxlifecycletrello-archive का अवतार

    trello-archive/RxLifecycle

    7,651GitHub पर देखें↗

    RxLifecycle is a lifecycle management library for RxJava that binds observable streams to Android component lifecycles. It functions as a reactive stream lifecycle wrapper and a memory leak prevention tool by automatically terminating asynchronous sequences when activities or fragments are destroyed. The library integrates RxJava with Android lifecycle states to ensure that resource management is handled automatically. It prevents memory leaks by disconnecting streams and disposing of subscriptions when a component reaches a specific lifecycle state. The project covers the domain of Android

    Provides automatic disposal of RxJava subscriptions when Android components are destroyed to prevent memory leaks.

    Java
    GitHub पर देखें↗7,651
  • kaushikgopal/rxjava-android-sampleskaushikgopal का अवतार

    kaushikgopal/RxJava-Android-Samples

    7,504GitHub पर देखें↗

    This project is a sample library and implementation guide for using RxJava to manage asynchronous data streams and concurrent tasks in Android applications. It provides a collection of reference implementations for reactive programming, focusing on functional operators to transform and combine asynchronous data flows. The library demonstrates specific Android architectural patterns, such as implementing decoupled event buses for component communication and coordinating parallel network requests. It includes concrete examples of mobile-specific patterns including search input debouncing, list

    Provides mechanisms to automatically dispose of RxJava subscriptions to prevent memory leaks during Android component destruction.

    Javaconcurrencyexamplejava
    GitHub पर देखें↗7,504
  • rrousselgit/riverpodrrousselGit का अवतार

    rrousselGit/riverpod

    7,315GitHub पर देखें↗

    Riverpod is a reactive state management framework for Dart that manages application state through providers which automatically track dependencies and rebuild dependents when values change. It functions as an asynchronous data caching library, caching results of async operations and exposing loading, error, and data states to widgets without manual future handling. The framework includes a provider composition system that combines multiple providers into derived values that recompute automatically when any dependency changes, along with code generation for state providers that reduces boilerpl

    Registers callbacks via ref.onDispose that run when a provider's state is destroyed, enabling cleanup of resources.

    Dartdartflutterhacktoberfest
    GitHub पर देखें↗7,315
  • facebook/kvocontrollerfacebook का अवतार

    facebook/KVOController

    7,291GitHub पर देखें↗

    KVOController is a thread-safe Objective-C library that serves as a wrapper for Cocoa key-value observing. It manages the monitoring of object property changes and automates the registration and removal of observers. The project focuses on memory safety by tying observer lifecycles to the controller, ensuring observers are removed upon deallocation to prevent leaks and crashes. It includes a thread-safe observation guard to prevent race conditions and observer resurrection when monitoring properties across multiple threads. The library maps object property paths to handler methods, triggerin

    Automatically manages observer registration and removal by tying them to the controller lifecycle to prevent memory leaks.

    Objective-C
    GitHub पर देखें↗7,291
  • alibaba/flutter_boostalibaba का अवतार

    alibaba/flutter_boost

    7,191GitHub पर देखें↗

    Flutter Boost is a hybrid integration framework that embeds Flutter screens inside existing native iOS, Android, and OHOS applications. It provides a cross-platform page router that navigates between native and Flutter pages using a unified page-name scheme, along with lifecycle-aware engine binding that ties the Flutter engine to native platform lifecycle events for proper start, pause, and resume behavior. The framework also includes multi-engine instance management, allowing separate Flutter engine instances per tab to maintain independent page state. The framework distinguishes itself thr

    Attaches a visibility observer to a single page to track show, hide, foreground, and background events.

    Dartandroiddartflutter
    GitHub पर देखें↗7,191
  • reactive-extensions/rx.netReactive-Extensions का अवतार

    Reactive-Extensions/Rx.NET

    7,153GitHub पर देखें↗

    Rx.NET is a reactive programming framework and library for the .NET ecosystem used to compose asynchronous and event-based programs. It provides an observable data stream API that treats live sequences of information as collections, allowing developers to coordinate asynchronous event workflows using a declarative syntax. The project functions as an extension of language integrated query patterns to asynchronous streams. This allows for the filtering and transformation of asynchronous notifications and event sequences through the application of query operators. The framework covers asynchron

    Implements a unified interface to track and clean up active subscriptions, preventing memory leaks in asynchronous streams.

    C#
    GitHub पर देखें↗7,153
  • dotnet/reactivedotnet का अवतार

    dotnet/reactive

    7,153GitHub पर देखें↗

    The .NET Reactive Extensions Library is a framework for composing, querying, and transforming asynchronous data streams. It provides a non-blocking implementation of the observer pattern to manage notifications and data flows between producers and consumers, functioning as an event stream processing library. The project applies LINQ-style querying and filtering operators to asynchronous sequences. This allows for the handling of event-driven programming patterns by utilizing composable operators to process notifications as they occur. The library covers asynchronous data streaming and non-bl

    Implements a non-blocking observer pattern to manage data flows and notifications between producers and consumers.

    C#
    GitHub पर देखें↗7,153
  • baconjs/bacon.jsbaconjs का अवतार

    baconjs/bacon.js

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

    Bacon.js is a JavaScript functional reactive programming library used for coordinating complex asynchronous data flows. It functions as an observable event stream framework and an asynchronous data flow orchestrator, allowing developers to model events as declarative streams and properties. The library distinguishes itself through its ability to manage reactive state and synchronize timing across multiple sources. It provides specialized mechanisms for atomic state synchronization to prevent glitches in derived properties and offers advanced coordination strategies such as asynchronous stream

    Distributes discrete events from a single source to multiple subscribers through callback registration.

    TypeScript
    GitHub पर देखें↗6,458
  • 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

    Automatically subscribes to GraphQL subscriptions for active queries and unsubscribes on component unmount to prevent memory leaks.

    TypeScript
    GitHub पर देखें↗6,041
  • androidx/androidxandroidx का अवतार

    androidx/androidx

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

    AndroidX is the official collection of Android Jetpack libraries for building Android applications. It provides a suite of backward-compatible APIs that expose modern platform features on older Android versions, ensuring consistent functionality across devices. The project is built around lifecycle-aware component architecture, with tools like ViewModel for preserving UI data across configuration changes, LiveData for lifecycle-aware data observation, and WorkManager for constraint-based background task scheduling. The project distinguishes itself through compile-time code generation and type

    Emits data updates to observers while automatically respecting lifecycle states.

    Kotlin
    GitHub पर देखें↗6,010
  • dbacinski/design-patterns-in-kotlindbacinski का अवतार

    dbacinski/Design-Patterns-In-Kotlin

    5,998GitHub पर देखें↗

    This project is a reference collection of practical examples demonstrating the implementation of common software design patterns in Kotlin. It serves as a guide to architectural best practices and object-oriented principles through the application of behavioral, creational, and structural patterns. The collection provides concrete implementations to demonstrate how to decouple object instantiation, manage communication and responsibility between objects, and organize complex class and object relationships. The reference covers creational patterns such as factories and builders, structural pa

    Implements the observer pattern to enable subjects to notify multiple subscribers of state changes.

    Kotlin
    GitHub पर देखें↗5,998
पिछला123अगला
  1. Home
  2. Software Engineering & Architecture
  3. Observer Patterns

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

  • Disposable Observers4 सब-टैग्सNotification observers that automatically unregister after a single execution to prevent memory leaks. **Distinct from Observer Patterns:** Focuses on the automatic disposal/unregistration lifecycle rather than the general pub-sub structure.