GOGOAST
全网最简单易上手,可读性最强的AST处理工具!
Install
- node包安装
npm install gogoast
- 浏览器执行
commonjs引入gogoast.js
为什么你需要用gogoAST?
- 大幅减少代码量——如果你需要使用AST对代码进行升级、改造、分析,快用gogoAST帮你摆脱繁琐冗余的的代码,专注于你的核心逻辑。不需要traverse,像剥洋葱一样一层一层的对比、操作、构造ast节点。
- 降低理解成本——甚至不需要理解什么是CallExpression、Identifier、ImportDeclaration这些概念,就可以畅快运用AST。
- 基于recast,转换后的代码基本与源代码的格式差异最小。
- 凡是需要借助babel、recast、jscodeshift、esprima...完成的需求,gogoast都能帮你更快更简单的完成。
快速开始
- 创建一个AST对象
const code = `some code`const GG = ;const AST = GG;
-
查找代码片段 用一段包含通配符($_$)的'代码选择器'来查找相应的代码片段,如:
-
查找代码中所有的变量
const matchWildCardList = AST; -
查找代码中所有的字符串
const matchWildCardList = AST; -
查找某些函数的调用
const nodePathList matchWildCardList = AST; -
选择器示例:
var $_$ = $_${ $_$ }View$_$ ? $_$ : $_$$_$ && $_$
-
返回结果 | nodePathList | matchWildCardList |
---|---|---|
描述 | 代码选择器匹配到的代码片段 | 代码选择器中通配符匹配到的代码片段 |
结构 | nodePath[] | { stucture: node, value: simpleNode }[] |
解释 | nodePath对象包含匹配到的ast结构及其上下文 | structure中的node是ast结构,value是简化后的node,便于取值 |
- 替换一段代码
- 在完整的AST片段中,通过param1查找对应的代码片段
- 通过param2生成一段代码,填入param1中通配符对应的代码
- 将param2生成的代码替换param1匹配的代码
AST; AST;
gogoAST与主流AST工具之对比
目前,自定义babel插件和jscodeshift是有代表性的AST工具,通过下面两个例子可以看出gogoAST的代码可读性和简洁的优势。
-
示例1: 与自定义babel插件对比
对于下面这段js代码
;consolevar b = consoleconsolelogvar c = consolelogconsolelog = func假如我们希望对不同的console.log做不同的处理,变成下面这样
import a from 'a'; var b = void 0; console.log.bind() var c = function(){}; console.log = func
- 用自定义Babel插件实现的核心代码:
// 代码来源:https://zhuanlan.zhihu.com/p/32189701module {returnname: "transform-remove-console"visitor:{const callee = path;if !callee return;if// console.log()if pathparentPathpath;else//var a = console.log()path;else if// console.log.bind()path;}MemberExpression:{if&&!pathparentPath//console.log = funcifpathparentPath &&pathparentKey === "left"pathparentPath;else//var a = console.logpath;};- 用gogoAST实现:
const AST = GG;AST;AST;AST;const result = AST; -
示例2: 与jscodeshift对比
对于下面这段代码:
;const suv = car;const truck = car;假如我们希望将函数的多个入参封装为一个对象传入,变成下面这样
;const suv = car;const truck = car;- 用jscodeshift实现的核心代码:
// 代码来源:https://www.toptal.com/javascript/write-code-to-rewrite-your-code{const j = apijscodeshift;const root = ;// find declaration for "car" importconst importDeclaration = root;// get the local name for the imported moduleconst localName =importDeclarationnodename;// current order of argumentsconst argKeys ='color''make''model''year''miles''bedliner''alarm';// find where `.factory` is being calledreturn root// specify print options for recast;};- 用gogoAST实现:
const AST = GG;const argKeys = 'color' 'make' 'model' 'year' 'miles' 'bedliner' 'alarm' ;const nodePathList matchWildCardList = AST;nodePathListconst result = AST;
API
陆续补充中
-
创建一个实例:createAstObj
const GG = ;const AST = GG;// options非必传,格式同babel-parse,如 { allowImportExportEverywhere: true, plugins: ['jsx'] } -
通过选择器查找AST节点:getAstsBySelector
- 选择器是一段包含通配符($_$)的代码
- nodePathList:返回找到的ast节点路径,包含自己节点、父节点等信息
- matchWildCardList:返回通配符$_$代表的节点信息,其中structure是节点完整信息,value是简略信息
const nodePathList matchWildCardList = AST; -
通过选择器替换另一个选择器查找到的AST节点:replaceSelBySel
- 就像'abcd'.replace('a', 'z')一样好用
AST;AST;AST; -
创建一个AST节点:buildAstByAstStr
- 可以通过字符串拼接AST节点的方式构造新的AST节点
const type = 'error';const content = ASTNODE; // 从其他代码中提取出来或者自己构造的ast节点GG -
GG模块其他基本方法
- 将AST节点转成字符串 generate(ast)
- 获取AST节点的所有父节点 getParentListByAst(path)
- 判断一个AST节点是否包含某子节点,子节点用选择器表示 hasChildrenSelector(path, childSelector)
- 用一个AST节点替换某个字符串 replaceStrByAst
- replaceAstByAst
- getPrevAst
- getNextAst
- insertAstListBefore
- insertAstListAfter
- removeAst
- ......
- AST实例上也有部分方法,用法相比GG模块调用少传第一个参数,实际传入的是该实例自身的ast结构
-
特殊类型AST节点的构造方法
- buildObjectProperty
// 为什么不直接用buildAstByAstStr?把一个对象粘贴进astexplore就知道了AST- appendJsxAttr
const locaid = '98s8dh3';const params = 'a=${aa}' 'b=${{aaa:"222",xxx:{ssss:111}}}' 'c=${"s"}' 'd=${a+1}''e=${ ss?2:1}'AST;// 结果:<div attr1=`gostr=;locaid=d98s8dh3;a=&b=&c=&d=&e=}`a=a+1 b='a' c=a></div>
使用示例(陆续补充)
- 将一段代码最外层所有未export的变量定义都加上export
const GG = ;const AST = GG; // code是源代码字符串const nodePathList = AST; // 匹配到最外层的变量定义nodePathListconsole // 输出代码