-
Notifications
You must be signed in to change notification settings - Fork 481
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bringing jscodeshift up to date #500
Comments
Usually either Flow or Hermes. I'm not 100% sure if adapters for these parsers are in this repo, but both parsers are available on astexplorer.net.
Maybe we can close the very old ones if they don't sound relevant any more?
This sounds fine to me! |
@ElonVolo is driving getting jscodeshift up to date and will respond to your question. If I was at their place, I would have created issues for each suggestion (if they're not already present) and use GitHub's Project Tables to track a new project (naming it I would have also made releases automated, suggestion in #494, to make the releases more frequent. |
Okay, now time for another one of my essay length posts, from most important to least important.
So I went through all the issues and closed ones that were ancient or irrelevant because they were fixed and never closed. Everything that remained I made sure had a label (with 1-2 exceptions). I didn't verify that the bugs were reproducable, I just made the distinction that it was reported as a defect.
[List Of Bugs](https://github.com/facebook/jscodeshift/labels/bug](https://github.com/facebook/jscodeshift/labels/bug)
Refined bug reports
jscodeshift issues in large OSS frameworks We've also had bug reports submitted from people developing projects using large open source frameworks that has jscodeshift baked into them (usually for migration purposes). It was a considerable amount of work learning the open source framework enough to figure out where jscodeshift was supposedly breaking (sometimes it was a bug in the framework), and in some of those cases the custom code that the user was trying to transform wasn't event present (I had to go the OSS frameworks "examples" directory and pick something similar to try to reproduce the error). I'd like to propose adding something like "if you're having problems with jscodeshift where it's used in framework your project makes use of, please consider pushing up your entire project (or some subset thereof you're allowed to) to a new branch, make it ready-to-go for one of our developers to test, and post the link to it along with any special instructions in your bug report". |
For bug reports, it's useful for users to link to a basic repro case on https://astexplorer.net/. Doesn't work in all scenarios, but it's great for things that can be reduced down to a few lines of repro code.
As part of improving the maintenance of jscodeshift, I've volunteered to do that sort of stuff (tagging new jscodeshift versions and publishing them to npm). 😃
Do you mean for beta versions, or do we actually want to push stable versions automatically? |
Another It seems to me that an ownership-transfer or fork would be a good idea imo. |
Since the last update on this issue was in August 2022, I just wanted to check in and see what the latest state of things is on this? If |
We could potentially fork recast and ast-types. I think the thing is that we'd need some volunteers to maintain the forks. There's a lot of users of jscodeshift, but so far, nobody has volunteered to maintain a fork of those projects (or replace them with other projects that are more well-maintained).
jscodeshift is still a good tool, and I still use it myself. I haven't kept up-to-date with the open-source ecosystem so I'm not sure what the alternatives are, if any. Internally at Meta, we're moving towards a new codemod system built on top of Flow. My understanding is that some parts of it are present in the open-source Flow release, but some of the infra around it hasn't been open-sourced yet. It also doesn't handle TypeScript-specific features that aren't available in Flow. Because of this, there's no longer anyone at Meta officially maintaining jscodeshift. The only person actively doing anything on it is me, and I'm just handling the npm releases, not actually writing any code for the project. I'm going to find out if we can un-Metafy this repo by moving jscodeshift out of the |
@Daniel15 nods, makes sense. It might be worth doing some high level analysis to understand what features (eg. if At the very least, that analysis would 'lower the barrier of entry' for potentially interested contributors to know where could be a good place to start, etc. This is by no means an authorative deepdive, but came across this old blog post:
@Daniel15 nods, makes sense I'm by no means across the ecosystem in this space either, but from a quick skim through some google results + related link following:
@Daniel15 Interesting. That's definitely useful info to know; thanks for sharing! Definitely keen to hear what the 'word' is on un-Meta-fying this project, once you find out :) |
Here is The State Of The 'Shift.
I've been maintaining (ok, somewhat maintaining) an unmeta-fied fork of jscodeshift called evcodeshift. In each release (which I really should be making more often) I bump everything up to the latest version of dependencies as well as use a fork of recast, @putout/recast, which for a while CodeRaiser was maintaining. This fork fixed some errors I was having in my codemods and their unit tests, which was one of my main reasons for forking jscodeshift. Another reason I forked jscodeshift was Meta is not allowing new command line arguments and features be added to added to jscodeshift (which Meta of course has the right to do as they are the owner), but since I need things like the Check it out when you get a chance. https://github.com/ElonVolo/evcodeshift
While jscodeshift has some of the most useful features out there, and I want to give the previous authors of jscodeshift much credit for before saying anything unpositive, jscodeshift also has some of the most confusing, and unmaintainable code that I've ever seen on any project I've ever worked on. Much of the code is written in a hyper-succinct style that takes a great while to detangle in one's head followed by a great many more minutes is spent wondering "why the heck did they do that there?" until you finally figure out "the why of it". This has made the jscodeshift project far more difficult to regularly maintain for everyone. There is also the matter that jscodeshift in its current state is (as far as I'm aware) permanently incompatible with ESM. That's why I've been taking some of my post-layoff time between job searches to do a rewrite/port of jscodeshift to a certain strongly typed Javasscript-subset language that will be maintainable for the next several decades. My goals is to make sure there is full backwards compatibility between the new version of evcodeshift and everyone's old jscodeshift scripts they wrote 5 years ago. I'm about a 1/3 of the way through the detangling, defining, and demining of the original jscodeshift codebase.
Most of what people call "jscodeshift" is actually ast-types and recast, as jscodeshift itself is just a thin wrapper containing a babel front end plus some paths stuff and searching stuff. Probably 80% of all issues logged in jscodeshift are actually recast/ast-types issues. And yes, it has been an issue that these libraries are not only not getting updated, but that useful bug fixes in already-submitted good-looking PR's have been languishing unmerged for months. Since these are projects completely separate from jscodeshift, they have been traditionally out of scope for jscodeshift issues. However there have been attempts to fork at least some of these, by both myself and CodeRaiser. CodeRaiser found maintaining a fork of recast and keeping it in sync with upstream changes was such a PITA that he eventually stopped and invented something completely different that replaced recast on his project. I found that both ast-types and recast, like jscodeshift, have some of the most confusing and unmaintainable code I've ever seen on a project. For example, one of recast's unit tests was using the actual transpiled code of the recast library itself as the javascript content for a unit test to parse, and it took me hours to find out why some compilation flag or line ending change was breaking an unrelated unit test for no seemingly darned good reason. So to answer the qusetion about an ast-types and recast fork, they would need refactored to such an extent that they'll for all intents are purposes they'll be rewrites. And when we get to rewriting this much code it's pretty much a full-time job, which is why I totally get that Ben has a limited amout of time to work on recast/ast-types stuff. And maybe at some point we'll take that on, but for right now the "portwrite" of jscodeshift has priority. As a side of effect of rewriting jscodeshift in a strongly typed language and adding some form of dependency injection to it, alternatives to ast-types and recast can also be an option in the future.
At some point, AI is probably going to replace jscodeshift and you've be able to use more natural language to describe the codemods you want and the AI tool will crawl through your entire codebase making those changes flawlessly. So any codemodding solution that exists you choose probably going to have a 5-10 year lifespan before it's considered obsolete. |
The Amazon Q Code Transformation (preview) announcement today reminded me of this comment. |
@ElonVolo Thanks for taking this on! Sounds like a lot of work, but you've made great progress! Please keep going 🙏 Your work is appreciated 🙌 |
I'd like to list some topics that need to be visited in order to bring jscodeshift out of stagnation.
The biggest issue is with recast. This library hasn't really had a lot of maintenance for the last couple of years, and there's something like 150+ issues and 40+ pull requests waiting to be merged. It seems like 80% of the issues that are logged against jscodeshift are actually recast issues. In order to fix the jscodeshift's outstanding issues, either recast itself needs to fix them or jscodeshift will need to adopt/create its own fork of recast to solve them. For the past year and a half or so putout's main developer has been maintaining a fork of recast and adding a lot of fixes to it. It might be worthwhile to look at switching to @putout/recast as opposed to the recast upstream. I've also been working on a fork of @putout/recast for evcodeshift that adds a few other things to make evcodeshift transforms more debuggable in vscode.
What can be said about recast can probably also be said to a lesser degree about ast-types.
How are existing outstanding issues and pull requests to jscodeshift going to be dealt with? Some of the issues/pull requests are from so long ago that I don't know if they're even relevant any more. Also, too many currently open pull requests is can scare away people who want to contribute. At this point, would it make sense to close most of them? If any can be easily and safely merged as is (after a bit of testing) should we go ahead and do so?
In a similar vein, a number of issues really aren't labelled. Is there any issue with retroactively labeling them so we can more easily search for needles of defects in a haystack of feature requests?
jscodeshift out-of-the-box uses the "babel5compat" setting, which keeps babel parser changes at pre-babel 6 AST's, which ostensibly seems to be done to avoid breaking old existing codemods. The "babylon" configuration, which targets newer post-Babel 6 features that more and more people seem to be complaining they don't have access to, has to be explicitly specified. At this point, should jscodeshift be switched over the babylon as a default?
In a similar vein, would any Facebookers being able to tell me what parser configuration is Facebook internally using for their jscodeshift transforms? babel5compat (the current default), babylon, ts, etc. I'm guessing bad things would happen if a new version of jscodeshift broke Facebook legacy codemods, so I'd like to know what I'm up against. It might be possible to hack together some kind of compatibility auto-detect functionality that scans codemod code to guess which parser to use, but I'd like to see if this even needs to be written before attempting to write it.
There's a number of issues in the project that aren't labelled, which makes searching explicitly for defects (as opposed to feature requests) a little more challenging. I assume there should be no issue with labelling them to make them more searchable?
The text was updated successfully, but these errors were encountered: