Momoa는 범용 JSON 유틸리티 툴킷입니다.
https://github.com/humanwhocodes/momoa
const { parse, traverse } = require("@humanwhocodes/momoa"); const ast = parse(some_json_string); traverse(ast, { enter(node, parent) { console.log("Entering", node.type); }, exit(node, parent) { console.log("Exiting", node.type); } });
등록된 댓글이 없습니다.