Using Recast to Automate Analysis and Maintenance of JS Code
Originally published at: 60devs.com Recast is a great library for parsing and modifying JavaScript code. The result of the parsing is an Abstract Syntax Tree (AST) which is easy to traverse and analyze. Once a tree is built, it’s easy to modify it and convert back to the source code. Additionally, Recast provides methods for [...]
Alex Rudenko