refex VS CCGrep

Compare refex vs CCGrep and see what are their differences.

refex

A syntactically aware search-and-replace tool for Python. (by ssbr)

CCGrep

Code Clone Detector like grep (by yuy-m)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
refex CCGrep
3 1
14 6
- -
5.0 0.0
7 months ago about 3 years ago
Python Java
Apache License 2.0 MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

refex

Posts with mentions or reviews of refex. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-11-22.
  • Writing and Linting Python at Scale
    4 projects | news.ycombinator.com | 22 Nov 2023
    As someone who worked on a similar tool (https://github.com/ssbr/refex/tree/main/refex/fix/fixers, I did a bunch of the work to prep this for open-sourcing, though I think all my contributions are hidden behind the "Google-internal" anonymization), having auto-applied or auto-appliable fixers like this is super useful.

    They can be auto-applied by post-commit (e.g. a generic `git fixcommit` style command that runs all the relevant lint tools and fixes them in the working copy, letting you review before push), or applied during code review (automatic comments with a "click here to apply fix" interface), both of which are nice.

    Plus the same underlying tooling can be used to write more complex one-off fixes that may be used for migrations or cleanups.

  • I learnt to use ASTs to patch 100,000s lines of python code
    2 projects | /r/Python | 5 Jun 2021
    You might like Refex, which automates AST transformations like this:
  • Semgrep: Like Grep but for Code
    12 projects | news.ycombinator.com | 22 Apr 2021
    There's lots of confusion about what semgrep does here, which is kind of unfortunate. I haven't touched it much, but I have built a very similar tool (I'm one of the contributors to refex[1], which is a very similar project).

    The starting point of semantic grep is very useful. When you have a big codebase, you often want to detect antipatterns, or not even antipatterns, but just uses of a thing, say you're renaming a method and want to track down the callers.

    Being able to act on the AST, instead of hoping you searched up all of the variants of whitespace and line breaks and, depending on the specific example, different uses of argument passing, is really useful.

    But often when you're semantically grepping, your goal is to replace something with something else (this is what refex was initially built for: to aide in large scale changes in python, as a sort of equivalent to the C++ tools that Google uses).

    But then you want to shift left even further: once you have a pattern that you want to replace once, you can just enforce that a linter yell at you when anyone does it again. So it's very natural to develop a linter-style thing on top of one of these[2].

    This is, as I understand it sort of the same thing that happens in C++: clang-tidy and clang-format are written on top of AST libraries that can be used for ad-hoc analysis and transformations, but you can also just plug them into a linter.

    The thing is, for most organizations, enforcing code style and best practices is more valuable than apply a refactoring to 10M lines of code, because most organizations don't have 10M lines of code to refactor. That doesn't mean that these tools aren't also useful for ad-hoc transforms and exploratory analysis. They absolutely are!

    [1]: https://github.com/ssbr/refex

    [2]: https://github.com/ssbr/refex/tree/main/refex/fix

CCGrep

Posts with mentions or reviews of CCGrep. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-04-22.
  • Semgrep: Like Grep but for Code
    12 projects | news.ycombinator.com | 22 Apr 2021
    I wrote a small VS code extension and pre-commit hook that might meet 80% of your needs:

    https://github.com/elanning/checkr

    It is just simple regex at this time, but hopefully I can add something like CCGrep syntax in the future:

    https://github.com/yuy-m/CCGrep

What are some alternatives?

When comparing refex and CCGrep you can also consider the following projects:

pre-commit - A framework for managing and maintaining multi-language pre-commit hooks.

ocaml-tree-sitter-semgrep - Generate parsers from tree-sitter grammars extended to support Semgrep patterns

checkr - Custom static analysis rules for the lazy. Write project specific static analysis checks in a few lines of code.

tree-sitter-swift - Swift grammar for tree-sitter

Bear - Bear is a tool that generates a compilation database for clang tooling.

actions-preview.nvim - Fully customizable previewer for LSP code actions.

ecp-interpreter

ruff - An extremely fast Python linter and code formatter, written in Rust.

terraform-provider-aws - The AWS Provider enables Terraform to manage AWS resources.

logzy