awesome-repositories.comBlog
© 2026 Bringes Technology SRL·VAT RO45896025·hello@bringes.io
MCPBlogSitemapPrivacyTerms
Build Caching · Awesome GitHub Repositories

2 repos

Awesome GitHub RepositoriesBuild Caching

Mechanisms to skip redundant processing by tracking file state changes.

Distinguishing note: Focuses on file-system-aware caching for performance optimization.

Explore 2 awesome GitHub repositories matching development tools & productivity · Build Caching. Refine with filters or upvote what's useful.

  1. Home
  2. Development Tools & Productivity
  3. Build Caching

Awesome Build Caching GitHub Repositories

Describe the repository you're looking for…
Find the best repos with AI.We'll search the best matching repositories with AI.
  • eslint/eslint

    eslint/eslint

    27,008View on GitHub↗

    This project is a static analysis engine designed to identify patterns, enforce coding standards, and automate code quality improvements in software projects. By parsing source code into structured abstract syntax trees, it enables deep programmatic inspection and the automated remediation of identified programming issues. The engine functions as a pluggable linting framework, allowing developers to extend its core capabilities through a modular architecture. Users can inject custom rules, parsers, and processors to support non-standard file formats or domain-specific logic. This extensibilit

    Store previous analysis outcomes to process only changed files, significantly reducing execution time by skipping redundant checks on unmodified source code.

    JavaScriptecmascripteslintjavascript
    27,008View on GitHub↗
  • bazelbuild/bazel

    bazelbuild/bazel

    25,145View on GitHub↗

    Bazel is a multi-language build automation engine designed to manage complex dependency graphs and execute compilation tasks for massive codebases. It functions as a hermetic build environment, utilizing sandboxed execution and content-addressable caching to ensure that build artifacts are reproducible and that identical tasks are never re-executed. By modeling dependencies as a directed acyclic graph, the system determines optimal execution order and identifies tasks that can run in parallel. The project distinguishes itself through its support for distributed build execution, allowing resou

    Stores and retrieves build results using cryptographic hashes to avoid redundant work.

    Javabazelbuildbuild-system
    25,145View on GitHub↗