ast-grep

coverage badge Badge Badge GitHub Sponsors

ast-grep(sg)

ast-grep(sg) is a lightning fast and user friendly tool for code searching, linting, rewriting at large scale.

Introduction

ast-grep is a AST-based tool to search code by pattern code. Think it as your old-friend grep but it matches AST nodes instead of text. You can write patterns as if you are writing ordinary code. It will match all code that has the same syntactical structure. You can use $ sign + upper case letters as wildcard, e.g. $MATCH, to match any single AST node. Think it as REGEX dot ., except it is not textual.

Try the online playground for a taste!

Demo

output

Installation

You can install it from npm, cargo or homebrew!

```bash

install via pnpm

npm install --global @ast-grep/cli

install via cargo

cargo install ast-grep

install via homebrew, thank @henryhchchc

brew install ast-grep Or you can build ast-grep from source. You need install rustup, clone the repository and then bash cargo install --path ./crates/cli ```

Command line usage example

ast-grep has following form. sg --pattern 'var code = $PATTERN' --rewrite 'let code = new $PATTERN' --lang ts

Example

bash sg -p '$A && $A()' -l ts -r '$A?.()'

Sponsor

Sponsors

If you find ast-grep interesting and useful for your work, please buy me a coffee so I can spend more time on the project!

Feature Highlight

ast-grep's core is an algorithm to search and replace code based on abstract syntax tree produced by tree-sitter. It can help you to do lightweight static analysis and massive scale code manipulation in an intuitive way.

Key highlights:

ast-grep's vision is to democratize abstract syntax tree magic and to liberate one from cumbersome AST programming!

CLI Screenshot

Search

| Feature | Command | Screenshot | | ------- | ------- | ---------- | | Search | sg -p 'Some($A)' -l rs | image | | Rewrite | sg -p '$F && $F($$$ARGS)' -r '$F?.($$$ARGS)' -l ts | image| | Report | sg scan | image |