GithubHelp home page GithubHelp logo

vjeux / astexplorer Goto Github PK

View Code? Open in Web Editor NEW

This project forked from fkling/astexplorer

0.0 2.0 0.0 42.93 MB

A web tool to explore the ASTs generated by various parsers.

Home Page: https://astexplorer.net/

CSS 7.02% HTML 0.77% JavaScript 91.70% Shell 0.50%

astexplorer's Introduction

AST explorer

Paste or drop code into the editor and inspect the generated AST.

The AST explorer provides following code parsers:

Depending on the parser settings, it not only supports ES5/CSS3 but also

Since future syntax is supported, the JavaScript AST explorer is a useful tool for developers who want to create AST transforms.

In fact, following transformers are included so you can prototype your own plugins:

Features

  • Save and fork code snippets. Copy the URL to share them.
  • Copying an AST or dropping a file containing an AST into the window will parse the AST and update the code using escodegen.
  • Otherwise, the content of texteditor will be replaced with the content of the file (i.e. you can drag and drop JS files).
  • Choose between multiple parsers and configure them.
  • Toggle Transform mode with jscodeshift and babel.
  • shift+click on a node expands the full subtree.
  • Hovering over a node highlights the corresponding text in the source code: source highlight
  • Editing the source or moving the cursor around will automatically highlight the corresponding AST node (or its ancestors of it isn't expanded): source highlight
  • You can use $node in the console to refer to the last opened/toggled AST node.

Contributions

I'm happy about any feedback, feature request or PR to make this tool as useful as possible!

How to add a new parser

  1. Install the new parser as dependency: npm install -S theParser
  2. Copy one of the existing examples in src/parsers/{language}.
  3. Adjust the code as necessary:
  • Update metadata.
  • Load the right parser (loadParser).
  • Call the right parsing method with the right/necessary options in parse.
  • Implement the nodeToRange method (this is for highlighting).
  • Implement the getNodeName method (this is for quick look through the tree).
  • Implement opensByDefault method for auto-expansion of specific properties.
  • Define _ignoredProperties set or implement forEachProperty generator method for filtering.
  • Provide a renderSettings method if applicable.

How to add a new transformer

  1. Install the new transformer as dependency.
  2. Copy one of the existing examples in src/parsers/{language}/transformers.
  3. Adjust the code as necessary:
  • Update metadata and defaultParserID.
  • Load the right transformer (loadTransformer).
  • Call the transformation method in transform.
  • Change sample transformation code in codeExample.txt.

Build your own version for development

  1. Clone the repository.
  2. Run git submodule update --init to initialize / update all submodules.
  3. Install all dependencies with npm install.

Run npm run build for the final minimized version.
Run npm run watch for incremental builds.

Run npm start to start a simple static webserver.

astexplorer's People

Contributors

azu avatar btmills avatar cpojer avatar danez avatar danharper avatar daniel15 avatar diagramatics avatar fkling avatar forbeslindesay avatar fson avatar hzoo avatar jdichev avatar jeffmo avatar juanpicado avatar kolodny avatar millermedeiros avatar motiz88 avatar nmalaguti avatar pieterv avatar rreverser avatar strml avatar thorn0 avatar timothygu avatar udnisap avatar voideanvalue avatar zertosh avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.