awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
JuanCrg90 avatar

JuanCrg90/Clean-Code-Notes

0
View on GitHub↗
6,119 stars·841 forks·8 vues

Clean Code Notes

Clean-Code-Notes est un guide d'étude sur le code propre et une collection de notes détaillées basées sur les standards de développement logiciel professionnels. Il sert de documentation pour les normes de codage et de référence pour écrire du code source maintenable.

Le projet fournit des résumés techniques pour la conception orientée objet et les design patterns logiciels. Il inclut des directives pour organiser les classes et les interfaces afin de réduire le couplage, isoler les détails d'implémentation et implémenter des patterns architecturaux tels que l'injection de dépendances et l'abstraction d'interface.

La ressource fonctionne également comme un guide d'implémentation pour le développement piloté par les tests (TDD), se concentrant sur la création de tests unitaires rapides, indépendants et répétables. De plus, elle couvre les normes pour les conventions de nommage, la gestion des erreurs et le formatage du code pour améliorer la lisibilité à long terme.

Features

  • Clean Coding Standards - Provides professional standards and guidelines for writing readable, maintainable, and consistent source code.
  • Implementation Isolation - Guides the use of abstract classes and interfaces to prevent client code from depending on concrete implementation details.
  • Abstract Data Types - Implements data abstractions by hiding internal implementation details using abstract interfaces.
  • Coding Best Practices - Provides implementation-level guidelines and patterns for writing maintainable and readable software code.
  • Interface-Based Decoupling - Explains how to rely on abstract interfaces rather than concrete implementations to reduce coupling between components.
  • Code Maintainability Principles - Shares design principles focused on managing abstraction layers to improve overall code maintainability.
  • Software Architecture Patterns - Summarizes structural strategies like dependency injection and data transfer objects to separate system construction from runtime.
  • Contract and Abstraction Patterns - Provides patterns for using interfaces and abstraction layers to decouple implementation details from consumption logic.
  • Object Oriented Design - Provides principles for organizing classes and interfaces to decouple components and isolate implementation details.
  • Single Responsibility Principles - Provides detailed notes on applying the single responsibility principle to create focused and maintainable components.
  • Software Design Patterns - Provides a reference for implementing architectural patterns like interface abstraction and dependency injection.
  • Software Design Principles - Offers summaries of fundamental rules and clean coding practices for improving long-term code maintainability.
  • Naming Conventions - Provides curated guidelines for choosing intention-revealing and searchable names for variables, functions, and classes.
  • Error Handling - Provides structured guidelines for managing exceptions and avoiding null values to keep business logic clean.
  • Test-Driven Development Resources - Serves as an implementation guide for test-driven development, emphasizing the write-failing-test-first methodology.
  • Code Refactoring Tools - Guidelines for restructuring and organizing existing code through better naming and formatting to reduce technical debt.
  • Data Transfer Objects - Implements data transfer objects to move raw information between system boundaries without adding logic.
  • Coding Standards - Offers standards for code formatting and consistent spacing to improve visual hierarchy and readability.
  • Explicit Dependency-Injection Wiring - Details the use of explicit dependency-injection wiring to separate system construction from runtime execution logic.
  • Boundary-Based Wrappers - Provides guidelines on wrapping external libraries in custom interfaces to isolate the core application from breaking changes.
  • Library Isolation Wrappers - Provides strategies for wrapping external libraries in custom interfaces to isolate the application from breaking changes.
  • Object and Data Structure Distinction - Explains the balance between using data-hiding objects and data-exposing structures to optimize for adding new functionality.
  • Law of Demeter - Describes the Law of Demeter to restrict module interactions and minimize coupling.
  • Learning Tests - Explains how to write learning tests against external packages to identify breaking changes in new releases.
  • Learning Tests - Guides the creation of learning tests against third-party packages to document behavior and detect breaking changes.
  • Maintainable Test Design - Guidelines for designing fast and independent unit tests to ensure reliable and repeatable results.
  • Clean Code and Principles - Comprehensive notes on applying clean code principles.

Historique des stars

Graphique de l'historique des stars pour juancrg90/clean-code-notesGraphique de l'historique des stars pour juancrg90/clean-code-notes

Recherche par IA

Explorez plus de dépôts awesome

Décrivez vos besoins en langage naturel — l'IA classe des milliers de projets open source sélectionnés par pertinence.

Start searching with AI

Questions fréquentes

Que fait juancrg90/clean-code-notes ?

Clean-Code-Notes est un guide d'étude sur le code propre et une collection de notes détaillées basées sur les standards de développement logiciel professionnels. Il sert de documentation pour les normes de codage et de référence pour écrire du code source maintenable.

Quelles sont les fonctionnalités principales de juancrg90/clean-code-notes ?

Les fonctionnalités principales de juancrg90/clean-code-notes sont : Clean Coding Standards, Implementation Isolation, Abstract Data Types, Coding Best Practices, Interface-Based Decoupling, Code Maintainability Principles, Software Architecture Patterns, Contract and Abstraction Patterns.

Quelles sont les alternatives open-source à juancrg90/clean-code-notes ?

Les alternatives open-source à juancrg90/clean-code-notes incluent : alexeymezenin/laravel-best-practices — This project is a comprehensive guide to architectural standards and coding patterns for developing maintainable… zakirullin/cognitive-load — This project is a collection of software engineering principles and architectural design patterns designed to minimize… labs42io/clean-code-typescript — This project is a set of software engineering standards and architectural patterns for writing maintainable and… zedr/clean-code-python — This project is a Python clean code guide and refactoring resource. It provides a collection of software craftsmanship… ryanmcdermott/clean-code-javascript — This project is a collection of engineering guidelines and best practices for writing readable and maintainable… ryanmcdermott/3rs-of-software-architecture — This project is a comprehensive guide to software architecture, providing a framework for designing maintainable,…

Alternatives open source à Clean Code Notes

Projets open source similaires, classés selon le nombre de fonctionnalités partagées avec Clean Code Notes.
  • alexeymezenin/laravel-best-practicesAvatar de alexeymezenin

    alexeymezenin/laravel-best-practices

    12,299Voir sur GitHub↗

    This project is a comprehensive guide to architectural standards and coding patterns for developing maintainable applications within the Laravel framework. It focuses on clean code standards, applying the single responsibility and DRY principles to ensure codebase predictability and consistency. The guide emphasizes decoupling components by moving business logic into service layers and shifting input validation into dedicated request classes to keep controllers lean. It advocates for the use of a service container and dependency injection to reduce class coupling and improve testability. The

    Voir sur GitHub↗12,299
  • zakirullin/cognitive-loadAvatar de zakirullin

    zakirullin/cognitive-load

    12,288Voir sur GitHub↗

    This project is a collection of software engineering principles and architectural design patterns designed to minimize the mental effort required to understand and maintain source code. It serves as a guide for implementing clean code methodologies and architectural simplification to reduce the overall cognitive load on developers. The framework emphasizes aligning module boundaries and ubiquitous language with business stakeholders to prevent architectural ripple effects. It advocates for balancing service granularity to avoid the overhead of distributed monoliths and suggests favoring objec

    Voir sur GitHub↗12,288
  • labs42io/clean-code-typescriptAvatar de labs42io

    labs42io/clean-code-typescript

    9,764Voir sur GitHub↗

    This project is a set of software engineering standards and architectural patterns for writing maintainable and refactorable TypeScript code. It provides a comprehensive guide for implementing clean code principles, focusing on the application of SOLID design and structural patterns to build decoupled systems. The framework prioritizes composition over inheritance and utilizes dependency inversion to reduce system coupling. It establishes standards for strict static typing and the use of read-only modifiers to ensure type safety and eliminate runtime errors. The guidance covers a broad range

    TypeScriptbest-practicesclean-architectureclean-code
    Voir sur GitHub↗9,764
  • zedr/clean-code-pythonAvatar de zedr

    zedr/clean-code-python

    4,816Voir sur GitHub↗

    This project is a Python clean code guide and refactoring resource. It provides a collection of software craftsmanship principles and examples designed to improve the readability and maintainability of Python source code. The resource focuses on optimizing variable naming to remove mental mapping and breaking functions into single-purpose units. It provides guidelines for reducing code duplication and organizing logic to ensure components remain easy to extend and maintain. The content covers software architecture and design quality, including the implementation of SOLID principles and indus

    Python
    Voir sur GitHub↗4,816
Voir les 30 alternatives à Clean Code Notes→