awesome-repositories.com
Blog
MCP
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
ProjetServeur MCPÀ proposNotre méthodologiePresse
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 dépôts

Awesome GitHub RepositoriesHTML Static Analysis

Static analysis specifically tailored to identify malformed tags and structural inconsistencies in HTML markup.

Distinct from Static Analysis Tools: While Static Analysis Tools [f2_mt1] is broad, this specializes in the unique structural requirements of HTML markup.

Explore 6 awesome GitHub repositories matching development tools & productivity · HTML Static Analysis. Refine with filters or upvote what's useful.

Awesome HTML Static Analysis GitHub Repositories

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • fullhuman/purgecssAvatar de FullHuman

    FullHuman/purgecss

    8,043Voir sur GitHub↗

    PurgeCSS est un outil de nettoyage et d'optimisation CSS pour pipelines de build, conçu pour réduire la taille finale des feuilles de style. Il fonctionne comme un outil de « tree shaking » qui analyse les fichiers HTML et JavaScript pour identifier et supprimer les sélecteurs CSS inutilisés. L'outil optimise les payloads CSS en effectuant une analyse statique du contenu pour détecter quels styles sont réellement utilisés dans le balisage. Il utilise des expressions régulières pour trouver des noms de classes potentiels sans exécuter de code et emploie une transformation AST basée sur PostCSS pour supprimer en toute sécurité les règles inutilisées. Le projet offre des capacités d'automatisation du build frontend, permettant d'intégrer la suppression des styles inutilisés directement dans les bundlers de modules et les task runners. Il inclut également un filtre de liste blanche personnalisée pour préserver les sélecteurs essentiels, indépendamment de leur détection lors de l'analyse du contenu.

    Scans HTML and JavaScript files to create a comprehensive list of all CSS selectors used in the markup.

    TypeScript
    Voir sur GitHub↗8,043
  • windicss/windicssAvatar de windicss

    windicss/windicss

    6,515Voir sur GitHub↗

    Windi CSS is a utility-first CSS framework that generates only the CSS classes actually used in a project, scanning source files at build time to produce smaller, optimized stylesheets. It provides on-demand style generation through static analysis of HTML and template files, eliminating unused styles for leaner output. The framework offers a plugin-based extension system for adding custom utilities, variants, and design tokens without modifying the core. It includes built-in compatibility for migrating from Tailwind CSS, removing Tailwind-specific dependencies and configuration fields while

    Parses HTML and template files to detect utility class names and determine which styles to generate.

    TypeScriptcsscss-compileron-demand
    Voir sur GitHub↗6,515
  • aui/font-spiderAvatar de aui

    aui/font-spider

    5,138Voir sur GitHub↗

    Font-spider est un ensemble d'outils spécialisés pour l'optimisation des polices web. Il fonctionne comme un utilitaire de sous-ensemble et de compression de polices qui analyse le contenu HTML pour extraire uniquement les caractères utilisés sur une page, créant des fichiers de police minimisés pour réduire le poids des pages et améliorer les vitesses de chargement. Le projet inclut un convertisseur de polices web qui génère des fichiers dans plusieurs formats binaires pour assurer la compatibilité multi-navigateur pour le rendu de texte. Il fournit également un plugin d'outil de build pour intégrer l'analyse et le sous-ensemble de polices directement dans les pipelines de développement automatisés. L'ensemble d'outils couvre le sous-ensemble de polices basé sur les glyphes, l'extraction de tables de caractères et l'analyse de l'utilisation des polices pour identifier et supprimer les données redondantes des ressources typographiques.

    Analyzes static HTML markup to determine the exact characters needed for an optimized font subset.

    JavaScript
    Voir sur GitHub↗5,138
  • sds/overcommitAvatar de sds

    sds/overcommit

    4,008Voir sur GitHub↗

    Overcommit is a Git hook manager and pre-commit validation framework designed to automate the execution of scripts and checks during various Git events. It serves as a workflow automation tool that ensures code quality and project standards are met before changes are committed or pushed to a remote repository. The system distinguishes itself through a comprehensive YAML-based configuration that allows for detailed hook behavior control, including file execution filtering, conditional skipping, and the management of hook dependencies. It provides specialized roles such as a commit message vali

    Analyzes HTML files to identify malformed tags and structural inconsistencies.

    Ruby
    Voir sur GitHub↗4,008
  • uncss/grunt-uncssAvatar de uncss

    uncss/grunt-uncss

    3,795Voir sur GitHub↗

    grunt-uncss is a CSS dead code eliminator and static analysis build tool. It functions as a Grunt CSS optimization plugin that identifies and deletes redundant style rules to reduce stylesheet file sizes and improve frontend performance. The tool analyzes HTML files and headless browser DOM states to detect styles that do not match any elements in the markup. It supports the protection of specific selectors through whitelists to ensure that styles for dynamically injected elements are preserved during the cleanup process. The project covers frontend asset minification by compressing cleaned

    Scans source HTML files to identify unique class names and identifiers used as style targets.

    HTML
    Voir sur GitHub↗3,795
  • htmlhint/htmlhintAvatar de htmlhint

    htmlhint/HTMLHint

    3,321Voir sur GitHub↗

    HTMLHint is an HTML linter and static analysis tool designed to identify structural errors and syntax violations in source code. It functions as a configurable validator that scans local files and remote URLs to detect malformed tags, duplicate IDs, and document structure inconsistencies. The tool serves as an accessibility auditor, verifying that web elements include necessary labels and alternative text for images. It further distinguishes itself by enforcing web document compliance, checking for the presence of doctypes, language attributes, and head metadata. The project covers a broad r

    Scans files and URLs to detect malformed tags, duplicate IDs, and document structure inconsistencies.

    JavaScriptanalysiscode-analysiscode-quality
    Voir sur GitHub↗3,321
  1. Home
  2. Development Tools & Productivity
  3. Static Analysis Tools
  4. HTML Static Analysis

Explorer les sous-tags

  • Class and Identifier ExtractionParsing HTML markup specifically to extract unique class names and identifiers for style matching. **Distinct from HTML Static Analysis:** Distinct from HTML Static Analysis by focusing on extracting style targets rather than detecting malformed tags.
  • Glyph Usage AnalysisScanning markup to identify the specific set of characters required for font subsetting. **Distinct from HTML Static Analysis:** Distinct from HTML Static Analysis: focuses on extracting the character set for typography optimization rather than structural or syntax validation.
  • Markup ParsersTools that extract structural information like class names and identifiers from static HTML markup. **Distinct from HTML Static Analysis:** Distinct from HTML Static Analysis: focuses on data extraction from markup rather than structural validation or linting.
  • Markup Usage AnalysisAnalyzing HTML and JS files to detect the presence of specific CSS selectors. **Distinct from HTML Static Analysis:** Distinct from HTML Static Analysis: focuses on extracting used selectors rather than finding malformed tags.
  • Utility Class DetectorsStatic analysis that parses HTML and template files to detect utility class names for on-demand CSS generation. **Distinct from HTML Static Analysis:** Distinct from HTML Static Analysis: focuses on detecting CSS utility class names for style generation, not structural HTML validation.