This repository aims to provide automated codemods for the modules provided in module replacements. Feel free to use these codemods in any way you like.
There are many jokes in the software development ecosystem about the size of node_modules
and JavaScript dependencies in general, for example dependencies like is-even
, or is-odd
. Fortunately, there are many individuals who are working on improving this situation (like for example the e18e initiative), but there are also individuals actively adding more and more unnecessary dependencies to popular projects that get millions of downloads, leading to bloated node_modules
folders with tons of dependencies.
This project aims to automate the cleanup of these dependencies for projects by implementing codemods to replace them. This will speed up the ecosystem cleanup efforts a lot by automating the process. For those of you who are unsure what codemods are, codemods are automatic transformations that run on your codebase programmatically. What that means is that you give a codemod some input source code, and it will output changed code, like for example cleanup of dependencies. For example, a codemod for is-even
would result in:
Before:
const isEven = require('is-even');
isEven(0);
After:
(0 % 2 === 0);
For more examples of before/after's, take a look at the test/fixtures folder, where you can see which replacements all of the codemods do.
All the codemods implemented in this repository should be listed in es-tooling/module-replacements, if you would like to see a codemod for a package, please make sure it's in module-replacements
first; feel free to create a PR to add it.
If you're interested in contributing a codemod, please read the contribution instructions.
This repository is intended to only hold the codemods for the packages provided by module replacements. Additional tooling can import these codemods and use them how they like, like for example CLI tools. If you're interested in building such a tool; please do, and let us know what you've built with it!
In the future the es-tooling
org will also be working on a CLI that wraps these codemods, among other things, but don't let that stop you from building something yourself!
If you would like to contribute a codemod for a module in module replacements or polyfills, please feel free to create a pull request!
All the codemods implemented in this repository should be listed in es-tooling/module-replacements, if you would like to see a codemod for a package, please make sure it's in module-replacements
first; feel free to create a PR to add it. You can run the npm run which
script locally to see which of the packages listed in module-replacements
have not been implemented as codemods yet.
So to get started, run the npm run which
script, collect some before/after examples, and get started.
If you're interested in contributing a codemod, but don't have much experience with writing codemods, take a look at codemod.studio, which makes it really easy.
To start, you can fork and clone this project. Then execute the following steps:
git clone <your fork of this repo>
cd module-replacements-codemods
node ./scripts/scaffold-codemod.js <name of new codemod> # e.g.: is-array-buffer
The name of the codemod should be equal to the name of the package you're trying to replace
This will scaffold all the needed files to create the codemod, and scaffold some tests:
codemods/index.js
: Your new codemod will be added to the list of available codemodscodemods/is-array-buffer/index.js
: The implementation of the codemodtest/fixtures/is-array-buffer/case-1/before.js
: The before state of the code that you want to transformtest/fixtures/is-array-buffer/case-1/after.js
: The expected after state of the code after applying your codemodYou can take a look at an existing codemod under the ./codemods/*
folder as a reference implementation; most of them are very small.
A codemod is a function that gets passed an options object, and returns an object. Here's an example:
export default function (options) {
return {
name: "foo-lib",
transform: ({ file }) => {
return file.source.replaceAll("foo", "bar");
},
};
}
The codemod's name
should be equal to the name of the package that you're trying to replace. So if you're writing a codemod for is-array-buffer
, the name
of the codemod should be is-array-buffer
.
The transform
function is where you can implement your codemod magic. Feel free to use whatever codemod tool you're comfortable with, ast-grep, jscodeshift, etc. It gets passed the file
with a source
property which is a string containing the contents of the file, which you can use to perform transformations on. Make sure to return the changed file from the transform
function.