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

fkling/astexplorer

0
View on GitHub↗
6,538 stars·776 forks·JavaScript·MIT·6 vuesastexplorer.net↗

Astexplorer

AST Explorer est un outil basé sur le web pour analyser le code source en arbres de syntaxe abstraits et visualiser la structure d'arbre résultante. Il sert d'inspecteur de code et de terrain de jeu pour la transformation, permettant aux utilisateurs d'explorer la représentation structurelle de divers langages de programmation via une interface de navigateur interactive.

L'outil fournit un environnement de transformation où les utilisateurs peuvent appliquer des règles de modification aux arbres analysés pour tester la logique de modification de code. Il présente un mappage bidirectionnel qui met en évidence les nœuds d'arbre correspondants et le texte source simultanément à mesure que le curseur se déplace dans l'éditeur.

La plateforme supporte l'importation de code via des téléchargements de fichiers ou des interfaces de glisser-déposer et permet le partage d'états de code spécifiques et de configurations d'analyseur via des URL encodées par état.

Features

  • Abstract Syntax Tree Visualizers - A web-based tool for parsing source code into Abstract Syntax Trees and visualizing the resulting tree structure.
  • AST Visualization - Renders the structural components of an abstract syntax tree for interactive human inspection.
  • Transformation Playgrounds - Offers an interactive environment for applying transformation rules to parsed trees to test modification logic.
  • Transformation Prototyping - Allows users to apply transformation plugins to a parsed tree and immediately observe the resulting code changes.
  • Source Parsers - Converts source code into structured syntax trees while maintaining a link back to the original syntax.
  • AST Node Location Mapping - Maps abstract syntax tree nodes back to original character offsets for simultaneous highlighting.
  • AST-to-Source Mappings - Provides bidirectional highlighting between AST nodes and the corresponding source code snippets.
  • Structural Code Inspectors - Provides a browser interface for exploring the structural representation of programming languages through interactive trees.
  • Code Transformation Engines - Provides an environment to automate structural code modifications using rule-based transformations on syntax trees.
  • Parser Plugin Architectures - Features a modular architecture that allows dynamic loading of various language parsing libraries as plugins.
  • Syntax Tree Transformers - Provides a pipeline for applying modification functions to a syntax tree to rewrite the underlying code.
  • Compiler Logic Prototyping - Facilitates the refinement of code transformation logic by observing real-time effects on a parsed tree.
  • State-Encoded Sharing - Generates shareable URLs containing current code and parser configurations for collaboration.
  • Specification Debugging - Allows developers to verify how a specific language parser interprets code by mapping nodes back to source text.
  • URL State Serialization - Serializes current code and parser configurations into the URL to enable shareable state snapshots.
  • Event-Driven State Synchronizers - Implements a reactive synchronization mechanism that updates the AST view whenever the editor content changes.
  • Tree View Virtualizers - Uses a virtualized, collapsible tree view to efficiently render large abstract syntax trees.
  • AST & Language Tools - Web-based AST visualization tool.

Historique des stars

Graphique de l'historique des stars pour fkling/astexplorerGraphique de l'historique des stars pour fkling/astexplorer

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 fkling/astexplorer ?

AST Explorer est un outil basé sur le web pour analyser le code source en arbres de syntaxe abstraits et visualiser la structure d'arbre résultante. Il sert d'inspecteur de code et de terrain de jeu pour la transformation, permettant aux utilisateurs d'explorer la représentation structurelle de divers langages de programmation via une interface de navigateur interactive.

Quelles sont les fonctionnalités principales de fkling/astexplorer ?

Les fonctionnalités principales de fkling/astexplorer sont : Abstract Syntax Tree Visualizers, AST Visualization, Transformation Playgrounds, Transformation Prototyping, Source Parsers, AST Node Location Mapping, AST-to-Source Mappings, Structural Code Inspectors.

Quelles sont les alternatives open-source à fkling/astexplorer ?

Les alternatives open-source à fkling/astexplorer incluent : rome/tools — This project is a unified toolchain for JavaScript and TypeScript development, providing a suite of specialized tools… estree/estree — ESTree is a formal schema and set of object interfaces used to represent JavaScript source code as a standardized… benjamn/recast — Recast is a JavaScript AST parser and printer designed for automated code refactoring. It converts source code into… dsherret/ts-morph — ts-morph is a TypeScript AST manipulation library and a high-level wrapper for the TypeScript compiler API. It… babel/babel — Babel is a pluggable JavaScript compiler and transpiler that converts modern ECMAScript syntax into… acornjs/acorn — Acorn is a JavaScript parser that converts source text into a structured abstract syntax tree. It follows the ESTree…

Alternatives open source à Astexplorer

Projets open source similaires, classés selon le nombre de fonctionnalités partagées avec Astexplorer.
  • rome/toolsAvatar de rome

    rome/tools

    23,417Voir sur GitHub↗

    This project is a unified toolchain for JavaScript and TypeScript development, providing a suite of specialized tools for bundling, parsing, linting, and formatting source code. The toolchain is implemented in Rust and utilizes a shared internal representation to allow multiple tools to operate on the same parsed source code. It employs a parallelized analysis pipeline and single-pass parsing with error recovery to process files across CPU cores. The suite covers several core capability areas, including static analysis for identifying programmatic errors, automated style standardization, and

    Rustformatterjavascriptlinter
    Voir sur GitHub↗23,417
  • estree/estreeAvatar de estree

    estree/estree

    5,421Voir sur GitHub↗

    ESTree is a formal schema and set of object interfaces used to represent JavaScript source code as a standardized abstract syntax tree. It serves as a common tree format and parser standard to ensure interoperability between different JavaScript parsers and transformation tools. The specification provides a consistent way to model language constructs, including statements, expressions, and module declarations. It includes detailed representations for modern language features such as classes, private identifiers, and short-circuiting logic like nullish coalescing and optional chaining. The pr

    astestreejavascript
    Voir sur GitHub↗5,421
  • dsherret/ts-morphAvatar de dsherret

    dsherret/ts-morph

    6,110Voir sur GitHub↗

    ts-morph is a TypeScript AST manipulation library and a high-level wrapper for the TypeScript compiler API. It provides a programmatic interface for analyzing, modifying, and generating TypeScript source code, serving as a tool for automated code refactoring and source code generation. The library simplifies the process of navigating and inspecting project structures by offering an object-oriented abstraction over the underlying compiler API. It allows for the programmatic transformation of existing codebases to automate structural updates and bulk code migrations. Its capabilities cover sta

    TypeScript
    Voir sur GitHub↗6,110
  • babel/babelAvatar de babel

    babel/babel

    44,009Voir sur GitHub↗

    Babel is a pluggable JavaScript compiler and transpiler that converts modern ECMAScript syntax into backwards-compatible versions of the language. It functions as an abstract syntax tree manipulator, parsing source code into a hierarchical structure to traverse and modify nodes for custom code transformations. The system utilizes a plugin-driven architecture to apply specific transformation rules and supports presets that bundle multiple plugins into named configuration groups. This enables the transformation of experimental syntax and the injection of non-global polyfills to ensure consisten

    TypeScriptastbabelcompiler
    Voir sur GitHub↗44,009
  • Voir les 30 alternatives à Astexplorer→