87 releases (19 breaking)

new 0.20.2 Mar 27, 2024
0.19.4 Mar 11, 2024
0.16.0 Dec 29, 2023
0.13.2 Nov 20, 2023
0.1.0 Jul 7, 2022

#1972 in Parser implementations

Download history 324/week @ 2023-12-06 276/week @ 2023-12-13 63/week @ 2023-12-20 130/week @ 2023-12-27 203/week @ 2024-01-03 404/week @ 2024-01-10 191/week @ 2024-01-17 52/week @ 2024-01-24 242/week @ 2024-01-31 55/week @ 2024-02-07 548/week @ 2024-02-14 726/week @ 2024-02-21 228/week @ 2024-02-28 399/week @ 2024-03-06 258/week @ 2024-03-13 530/week @ 2024-03-20

1,451 downloads per month
Used in 10 crates (9 directly)

MIT license

155KB
4.5K SLoC

ast-grep

coverage badge Discord Repology Badge Badge GitHub Sponsors

ast-grep(sg)

ast-grep(sg) is a CLI tool for code structural search, lint, and rewriting.

Introduction

ast-grep is an 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

demo

See more screenshots on the website.

Installation

You can install it from npm, pip, cargo, homebrew, scoop or MacPorts!

npm install --global @ast-grep/cli
pip install ast-grep-cli
cargo install ast-grep

# install via homebrew, thank @henryhchchc
brew install ast-grep

# install via scoop, thank @brian6932
scoop install main/ast-grep

# install via MacPorts
sudo port install ast-grep

Or you can build ast-grep from source. You need install rustup, clone the repository and then

cargo install --path ./crates/cli

Packages are available on other platforms too.

Command line usage example

ast-grep has following form.

sg --pattern 'var code = $PATTERN' --rewrite 'let code = new $PATTERN' --lang ts

Example

sg -p '$A && $A()' -l ts -r '$A?.()'
sg -p 'new Zodios($URL,  $CONF as const,)' -l ts -r 'new Zodios($URL, $CONF)' -i

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:

  • An intuitive pattern to find and replace AST. ast-grep's pattern looks like ordinary code you would write every day (you could say the pattern is isomorphic to code).

  • jQuery like API for AST traversal and manipulation.

  • YAML configuration to write new linting rules or code modification.

  • Written in compiled language, with tree-sitter based parsing and utilizing multiple cores.

  • Beautiful command line interface :)

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

  • If you are an open source library author, ast-grep can help your library users adopt breaking changes more easily.
  • if you are a tech lead in your team, ast-grep can help you enforce code best practice tailored to your business need.
  • If you are a security researcher, ast-grep can help you write rules much faster.

lib.rs:

This module contains the core library for ast-grep.

It provides APIs for parsing, traversing, searching and replacing tree-sitter nodes. Usually you will only need ast-grep CLI instead of this crate. But if you want to use ast-grep as a library, this is the right place.

Dependencies

~3–6MB
~109K SLoC