Building a Codemod Tool for Rewriting Default Exports
Recently, at SignNow, we decided to migrate to the named exports/imports and add the eslint rule...
Tag archive
Recently, at SignNow, we decided to migrate to the named exports/imports and add the eslint rule...

In this article, we are going to take a look at a tool called JARVIS which will profoundly transform...
At Entria we have a lot of Node.js scripts to automate common tasks we also make a script for any...
In this article, we are going to take a look at a tool called AST Finder which will significantly imp...
In this article, we are going to take a look at a tool called AST Builder which will significantly im...
I'm trying to write a small codemod to refactor some of the code. Consider I've somethihng like this:...

Analysing and modifying abstract syntax tree is not that hard, if you start from simple cases and gradually increase complexity.