awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectDespreCum realizăm clasamentulPresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·
fkling avatar

fkling/astexplorer

0
View on GitHub↗
6,538 stele·776 fork-uri·JavaScript·MIT·5 vizualizăriastexplorer.net↗

Astexplorer

AST Explorer este un instrument bazat pe web pentru parsarea codului sursă în arbori de sintaxă abstractă (AST) și vizualizarea structurii arborelui rezultat. Servește drept inspector de cod și loc de joacă pentru transformări, permițând utilizatorilor să exploreze reprezentarea structurală a diverselor limbaje de programare printr-o interfață interactivă în browser.

Instrumentul oferă un mediu de transformare unde utilizatorii pot aplica reguli de modificare arborilor parsați pentru a testa logica de modificare a codului. Dispune de mapare bidirecțională care evidențiază simultan nodurile arborelui corespondente și textul sursă pe măsură ce cursorul se mișcă prin editor.

Platforma susține importul codului prin încărcări de fișiere sau interfețe drag-and-drop și permite partajarea stărilor specifice ale codului și a configurațiilor parser-ului prin URL-uri cu stare codificată.

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.

Istoric stele

Graficul istoricului de stele pentru fkling/astexplorerGraficul istoricului de stele pentru fkling/astexplorer

Căutare AI

Explorează mai multe repository-uri excelente

Descrie ce ai nevoie în limbaj simplu — AI-ul sortează mii de proiecte open source selectate în funcție de relevanță.

Start searching with AI

Întrebări frecvente

Ce face fkling/astexplorer?

AST Explorer este un instrument bazat pe web pentru parsarea codului sursă în arbori de sintaxă abstractă (AST) și vizualizarea structurii arborelui rezultat. Servește drept inspector de cod și loc de joacă pentru transformări, permițând utilizatorilor să exploreze reprezentarea structurală a diverselor limbaje de programare printr-o interfață interactivă în browser.

Care sunt principalele funcționalități ale fkling/astexplorer?

Principalele funcționalități ale fkling/astexplorer sunt: Abstract Syntax Tree Visualizers, AST Visualization, Transformation Playgrounds, Transformation Prototyping, Source Parsers, AST Node Location Mapping, AST-to-Source Mappings, Structural Code Inspectors.

Care sunt câteva alternative open-source pentru fkling/astexplorer?

Alternativele open-source pentru fkling/astexplorer includ: 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…

Alternative open-source pentru Astexplorer

Proiecte open-source similare, clasificate după numărul de funcționalități comune cu Astexplorer.
  • rome/toolsAvatar rome

    rome/tools

    23,417Vezi pe 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
    Vezi pe GitHub↗23,417
  • estree/estreeAvatar estree

    estree/estree

    5,421Vezi pe 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
    Vezi pe GitHub↗5,421
  • dsherret/ts-morphAvatar dsherret

    dsherret/ts-morph

    6,110Vezi pe 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
    Vezi pe GitHub↗6,110
  • babel/babelAvatar babel

    babel/babel

    44,009Vezi pe 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
    Vezi pe GitHub↗44,009
Vezi toate cele 30 alternative pentru Astexplorer→