awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
JuanCrg90 avatar

JuanCrg90/Clean-Code-Notes

0
View on GitHub↗
6,119 星标·841 分支·8 次浏览

Clean Code Notes

Clean-Code-Notes is a clean code study guide and a collection of detailed notes based on professional software development standards. It serves as documentation for coding standards and a reference for writing maintainable source code.

The project provides technical summaries for object oriented design and software design patterns. It includes guidelines for organizing classes and interfaces to reduce coupling, isolating implementation details, and implementing architectural patterns such as dependency injection and interface abstraction.

The resource also functions as an implementation guide for test driven development, focusing on the creation of fast, independent, and repeatable unit tests. Additionally, it covers standards for naming conventions, error handling, and code formatting to improve long-term readability.

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.

Star 历史

juancrg90/clean-code-notes 的 Star 历史图表juancrg90/clean-code-notes 的 Star 历史图表

AI 搜索

探索更多 awesome 仓库

用简单的语言描述您的需求 —— AI 将根据相关性为您从数千个精选开源项目中进行排序。

Start searching with AI

常见问题解答

juancrg90/clean-code-notes 是做什么的?

Clean-Code-Notes is a clean code study guide and a collection of detailed notes based on professional software development standards. It serves as documentation for coding standards and a reference for writing maintainable source code.

juancrg90/clean-code-notes 的主要功能有哪些?

juancrg90/clean-code-notes 的主要功能包括:Clean Coding Standards, Implementation Isolation, Abstract Data Types, Coding Best Practices, Interface-Based Decoupling, Code Maintainability Principles, Software Architecture Patterns, Contract and Abstraction Patterns。

juancrg90/clean-code-notes 有哪些开源替代品?

juancrg90/clean-code-notes 的开源替代品包括: 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,…

Clean Code Notes 的开源替代方案

相似的开源项目,按与 Clean Code Notes 的功能重合度排序。
  • alexeymezenin/laravel-best-practicesalexeymezenin 的头像

    alexeymezenin/laravel-best-practices

    12,299在 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

    在 GitHub 上查看↗12,299
  • zakirullin/cognitive-loadzakirullin 的头像

    zakirullin/cognitive-load

    12,288在 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

    在 GitHub 上查看↗12,288
  • labs42io/clean-code-typescriptlabs42io 的头像

    labs42io/clean-code-typescript

    9,764在 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
    在 GitHub 上查看↗9,764
  • zedr/clean-code-pythonzedr 的头像

    zedr/clean-code-python

    4,816在 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
    在 GitHub 上查看↗4,816
查看 Clean Code Notes 的所有 30 个替代方案→